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

dvc.yaml 873 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
36
37
  1. stages:
  2. feature:
  3. cmd: python src/models/Kitchen_sink/featurize.py data/data data/feature
  4. deps:
  5. - src/models/Kitchen_sink/featurize.py
  6. - data/data
  7. params:
  8. - featurize.fs_select
  9. outs:
  10. - data/feature:
  11. persist: true
  12. train:
  13. cmd: python src/models/Kitchen_sink/train.py data/feature/ks_train.csv
  14. deps:
  15. - data/feature/cb_train.csv
  16. params:
  17. - train.lr
  18. - train.n_estimators
  19. - train.objective
  20. - train.folds
  21. - train.param_comb
  22. - train.score
  23. - train.seed
  24. outs:
  25. - parameters.json:
  26. persist: true
  27. evaluation:
  28. cmd: python src/models/kitchen_sink/evaluate.py data/feature data/model/xgb-cl.pkl
  29. deps:
  30. - data/feature
  31. - src/models/kitchen_sink/parameters.json
  32. outs:
  33. - data/model/xgb-cl.pkl:
  34. persist: true
  35. metrics:
  36. - score.json:
  37. cache: false
Tip!

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

Comments

Loading...