From a1c3365cd49cc2d78a440fa10d45c448799f3ad4 Mon Sep 17 00:00:00 2001 From: Baptiste Bauvin <baptiste.bauvin@lis-lab.fr> Date: Tue, 17 Mar 2020 07:32:00 -0400 Subject: [PATCH] config --- config_files/config_private_algos.yml | 35 +++++++++++++++++++-------- 1 file changed, 25 insertions(+), 10 deletions(-) diff --git a/config_files/config_private_algos.yml b/config_files/config_private_algos.yml index ad160de8..a85c4ad3 100644 --- a/config_files/config_private_algos.yml +++ b/config_files/config_private_algos.yml @@ -1,10 +1,10 @@ # The base configuration of the benchmark log: True -name: ["digits"] +name: ["generated_dset"] label: "_" file_type: ".hdf5" views: -pathf: "/home/baptiste/Documents/Datasets/Digits/" +pathf: "/home/baptiste/Documents/Gitwork/multiview_generator/generator/" nice: 0 random_state: 42 nb_cores: 1 @@ -16,16 +16,31 @@ res_dir: "../results/" track_tracebacks: False # All the classification-realted configuration options -multiclass_method: "oneVersusOne" -split: 0.75 +split: 0.5 nb_folds: 5 nb_class: classes: -type: ["multiview",] -algos_monoview: ["decision_tree", "random_forest"] -algos_multiview: ["mumbo","mvml"] -stats_iter: 2 +type: ["monoview", "multiview",] +algos_monoview: ["decision_tree",] +algos_multiview: ["mumbo","weighted_linear_early_fusion"] +stats_iter: 30 metrics: ["accuracy_score", "f1_score"] metric_princ: "accuracy_score" -hps_type: "randomized_search-equiv" -hps_iter: 2 \ No newline at end of file +hps_type: "None" +hps_args: + n_iter: 4 + equivalent_draws: False + + decision_tree: + max_depth: 3 + + + weighted_linear_early_fusion: + view_weights: null + monoview_classifier: "decision_tree" + monoview_classifier__max_depth: 10 + + mumbo: + n_estimators: 15 + decision_tree: + max_depth: 3 \ No newline at end of file -- GitLab