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 917 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
38
39
40
  1. stages:
  2. feature:
  3. cmd: python src/models/Cat-Boost/featurize.py data/data data/feature
  4. deps:
  5. - src/models/Cat-Boost/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/Cat-Boost/train.py data/feature/cb_train.csv
  14. deps:
  15. - data/feature/cb_train.csv
  16. params:
  17. - train.train_size
  18. - train.f1-type
  19. - train.loss_function
  20. - train.device
  21. - train.n_iter
  22. - train.seed
  23. outs:
  24. - parameters.json:
  25. persist: true
  26. evaluation:
  27. cmd: python src/models/Cat-Boost/evaluate.py data/feature data/model/cat-cl.pkl
  28. deps:
  29. - data/feature
  30. - src/models/Cat-Boost/parameters.json
  31. params:
  32. - train.lr
  33. - train.n_estimators
  34. - train.objective
  35. outs:
  36. - data/model/cat-cl.pkl:
  37. persist: true
  38. metrics:
  39. - score.json:
  40. cache: true
Tip!

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

Comments

Loading...