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 607 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
  1. stages:
  2. feature:
  3. cmd: python src/kitchen_sink/featurize.py data/data data/feature
  4. deps:
  5. - src/kitchen_sink/featurize.py
  6. - data/data
  7. params:
  8. - ft.n_neigh
  9. outs:
  10. - data/feature:
  11. persist: true
  12. train:
  13. cmd: python src/kitchen_sink/train.py data/feature data/model score.json prc.json
  14. deps:
  15. - data/feature
  16. - src/kitchen_sink/train.py
  17. params:
  18. - train.split
  19. outs:
  20. - data/model:
  21. persist: true
  22. metrics:
  23. - score.json:
  24. cache: false
  25. plots:
  26. - prc.json:
  27. cache: false
  28. x: recall
  29. y: precision
Tip!

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

Comments

Loading...