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

main.yaml 716 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
33
34
35
  1. defaults:
  2. - process: process2
  3. - model: model1
  4. - _self_
  5. raw:
  6. path: data/raw/Employee.csv
  7. processed:
  8. dir: data/processed
  9. X_train:
  10. name: X_train.csv
  11. path: ${processed.dir}/${processed.X_train.name}
  12. X_test:
  13. name: X_test.csv
  14. path: ${processed.dir}/${processed.X_test.name}
  15. y_train:
  16. name: y_train.csv
  17. path: ${processed.dir}/${processed.y_train.name}
  18. y_test:
  19. name: y_test.csv
  20. path: ${processed.dir}/${processed.y_test.name}
  21. final:
  22. dir: data/final
  23. name: final.csv
  24. path: ${final.dir}/${final.name}
  25. model:
  26. dir: models
  27. name: xgboost
  28. path: ${model.dir}/${model.name}
  29. mlflow_tracking_ui: https://dagshub.com/khuyentran1401/employee-future-prediction.mlflow
Tip!

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

Comments

Loading...