Register
Login
Resources
Docs Blog Datasets Glossary Case Studies Tutorials & Webinars
Product
Data Engine LLMs Platform Enterprise
Pricing Explore
Connect to our Discord channel

model_factory.yaml 909 B

You have to be logged in to leave a comment. Sign In
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
  1. data_path : artifact/stage03_optuna_training/train.pkl
  2. target: default
  3. metrics : roc_auc
  4. num_trails : 1500
  5. report_path : artifact/stage04_model_training/model_eval_reports/model_params.yaml
  6. models :
  7. GBT:
  8. model_index: model_2
  9. model_module: sklearn.ensemble
  10. model_class: GradientBoostingClassifier
  11. training_artifact_file_name: gbt_study.csv
  12. LGBM:
  13. model_index: model_3
  14. model_module: lightgbm
  15. model_class: LGBMClassifier
  16. training_artifact_file_name: lgbt_study.csv
  17. RF:
  18. model_index: model_5
  19. model_module: sklearn.ensemble
  20. model_class: RandomForestClassifier
  21. training_artifact_file_name: xgboost_study.csv
  22. CATBOOST:
  23. model_index: model_6
  24. model_module: catboost
  25. model_class: CatBoostClassifier
  26. training_artifact_file_name: catboost_study.csv
Tip!

Press p or to see the previous file or, n or to see the next file

Comments

Loading...