File size: 667 Bytes
ba003d8
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
automl_library: autogluon

autogluon:
  time_limit: 600
  presets: medium_quality
  eval_metric: null
  verbosity: 2
  num_bag_folds: 5
  num_stack_levels: 1

flaml:
  time_budget: 600
  metric: auto
  task: classification
  estimator_list:
    - lgbm
    - xgboost
    - rf
    - extra_tree
  n_jobs: -1
  verbose: 1
  early_stop: true

pycaret:
  session_id: 42
  n_select: 5
  fold: 5
  verbose: false
  optimize: Accuracy
  use_gpu: false
  tuning:
    enabled: true
    n_iter: 10
    optimize: Accuracy
  ensemble:
    enabled: false
    method: Bagging
    n_estimators: 10

common:
  target_column: target
  problem_type: auto
  cv_folds: 5
  random_state: 42