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

params.yaml 536 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
  1. base:
  2. random_state: 42
  3. data:
  4. dataset_csv: 'data/raw/iris.csv'
  5. features_path: 'data/processed/features_iris.csv'
  6. trainset_path: 'data/processed/train_iris.csv'
  7. testset_path: 'data/processed/test_iris.csv'
  8. test_size: 0.2
  9. train:
  10. # training, hyperparams
  11. clf_params:
  12. 'C': 0.01
  13. 'solver': 'lbfgs'
  14. 'multi_class': 'multinomial'
  15. 'max_iter': 10
  16. model_path: 'models/model.joblib'
  17. reports:
  18. # metrics, images, etc.
  19. metrics_file: 'reports/metrics.json'
  20. confusion_matrix_image: 'reports/confusion_matrix.png'
Tip!

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

Comments

Loading...