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 991 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
29
30
31
32
  1. external_data_config:
  2. external_data_csv: data/external/train.csv
  3. raw_data_config:
  4. raw_data_csv: data/raw/train.csv
  5. model_var: ['song_duration_ms','acousticness','danceability','energy','instrumentalness','key','liveness','loudness','audio_mode','speechiness','tempo','time_signature','audio_valence','song_popularity']
  6. train_test_split_ratio: 0.2
  7. target: song_popularity
  8. random_state: 111
  9. processed_data_config:
  10. train_data_csv: data/processed/song_popularity_train.csv
  11. test_data_csv: data/processed/song_popularity_test.csv
  12. mlflow_config:
  13. artifacts_dir: artifacts
  14. experiment_name: model_iteration1
  15. run_name: random_forest
  16. registered_model_name: random_forest_model
  17. remote_server_uri: http://localhost:1234
  18. random_forest:
  19. max_depth: 10
  20. n_estimators: 30
  21. model_dir: models/model.joblib
  22. model_webapp_dir: webapp/model_webapp_dir/model.joblib
  23. model_monitor:
  24. target_col_name: target
  25. monitor_dashboard_html: reports/data_and_target_drift_dashboard.html
Tip!

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

Comments

Loading...