Select Git revision
config_test.yml
-
Baptiste Bauvin authoredBaptiste Bauvin authored
config_test.yml 4.08 KiB
# The base configuration of the benchmark
Base :
log: true
name: ["Plausible"]
label: "_"
type: ".hdf5"
views:
pathf: "../data/"
nice: 0
random_state: 42
nb_cores: 1
full: False
debug: True
add_noise: False
noise_std: 0.0
res_dir: "../results/"
# All the classification-realted configuration options
Classification:
multiclass_method: "oneVersusOne"
split: 0.8
nb_folds: 2
nb_class: 2
classes:
type: ["multiview"]
algos_monoview: ["all"]
algos_multiview: ["lp_norm_mkl",]
stats_iter: 2
metrics: ["accuracy_score", "f1_score"]
metric_princ: "f1_score"
hps_type: "randomized_search"
hps_iter: 2
#####################################
# The Monoview Classifier arguments #
#####################################
random_forest:
n_estimators: [25]
max_depth: [3]
criterion: ["entropy"]
svm_linear:
C: [1]
svm_rbf:
C: [1]
svm_poly:
C: [1]
degree: [2]
adaboost:
n_estimators: [50]
base_estimator: ["DecisionTreeClassifier"]
adaboost_pregen:
n_estimators: [50]
base_estimator: ["DecisionTreeClassifier"]
n_stumps: [1]
adaboost_graalpy:
n_iterations: [50]
n_stumps: [1]
decision_tree:
max_depth: [10]
criterion: ["gini"]
splitter: ["best"]