mfarnas commited on
Commit
308d08d
·
1 Parent(s): b0a9b01

chg params

Browse files
Files changed (1) hide show
  1. src/params/model_params.yaml +9 -8
src/params/model_params.yaml CHANGED
@@ -1,35 +1,36 @@
1
  CatBoost:
2
  ensemble:
3
  learning_rate: 0.1
4
- depth: 8
5
  loss_function: Logloss
6
  random_seed: 0
7
  l2_leaf_reg: 3
8
  subsample: 1
9
  grow_policy: SymmetricTree # SymmetricTree or Depthwise or Lossguide
10
- bagging_temperature: 0.5
11
- random_strength: 3
12
- min_data_in_leaf: 15
13
  iterations: 10000
14
  early_stopping_rounds: 50
15
  custom_loss: ['AUC', "F1", "Accuracy", "Precision", "Recall", "BrierScore", "Logloss"]
16
  logging_level: 'Silent' # or 'Verbose', 'Info', 'Debug'
17
  train_dir: '/tmp' # avoid write permission issues
 
18
 
19
  # lr1e1_d12_l27_ss07_gpLg_bag1_rs5_m5
20
 
21
  single_model:
22
  # in this mode, the model is trained on the entire dataset using the best_iter obtained from cross-validation
23
  learning_rate: 0.1
24
- depth: 8
25
  loss_function: Logloss
26
  random_seed: 0
27
  l2_leaf_reg: 3
28
  subsample: 1
29
  grow_policy: SymmetricTree # SymmetricTree or Depthwise or Lossguide
30
- bagging_temperature: 0.5
31
- random_strength: 3
32
- min_data_in_leaf: 15
33
  custom_loss: ['AUC', "F1", "Accuracy", "Precision", "Recall", "BrierScore", "Logloss"]
34
  logging_level: 'Silent' # or 'Verbose', 'Info', 'Debug'
35
  train_dir: '/tmp' # avoid write permission issues
 
1
  CatBoost:
2
  ensemble:
3
  learning_rate: 0.1
4
+ depth: 10
5
  loss_function: Logloss
6
  random_seed: 0
7
  l2_leaf_reg: 3
8
  subsample: 1
9
  grow_policy: SymmetricTree # SymmetricTree or Depthwise or Lossguide
10
+ bagging_temperature: 1
11
+ random_strength: 2
12
+ min_data_in_leaf: 20
13
  iterations: 10000
14
  early_stopping_rounds: 50
15
  custom_loss: ['AUC', "F1", "Accuracy", "Precision", "Recall", "BrierScore", "Logloss"]
16
  logging_level: 'Silent' # or 'Verbose', 'Info', 'Debug'
17
  train_dir: '/tmp' # avoid write permission issues
18
+ auto_class_weights: Balanced # or None, or SqrtBalanced
19
 
20
  # lr1e1_d12_l27_ss07_gpLg_bag1_rs5_m5
21
 
22
  single_model:
23
  # in this mode, the model is trained on the entire dataset using the best_iter obtained from cross-validation
24
  learning_rate: 0.1
25
+ depth: 10
26
  loss_function: Logloss
27
  random_seed: 0
28
  l2_leaf_reg: 3
29
  subsample: 1
30
  grow_policy: SymmetricTree # SymmetricTree or Depthwise or Lossguide
31
+ bagging_temperature: 1
32
+ random_strength: 2
33
+ min_data_in_leaf: 20
34
  custom_loss: ['AUC', "F1", "Accuracy", "Precision", "Recall", "BrierScore", "Logloss"]
35
  logging_level: 'Silent' # or 'Verbose', 'Info', 'Debug'
36
  train_dir: '/tmp' # avoid write permission issues