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 619 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
  1. stages:
  2. prepare:
  3. cmd: python src/prepare.py data/data.csv
  4. deps:
  5. - data/data.csv
  6. - src/prepare.py
  7. outs:
  8. - data/prepared
  9. train:
  10. cmd: python src/train.py data/prepared model.pkl
  11. deps:
  12. - data/prepared
  13. - src/train.py
  14. params:
  15. - train.model
  16. - train.seed
  17. - train.split
  18. outs:
  19. - model/model.pkl
  20. evaluate:
  21. cmd: python src/evaluate.py model.pkl data/prepared scores.json confusion_matrix.png ROC_AUC_curve.png
  22. deps:
  23. - data/prepared
  24. - model/model.pkl
  25. - src/evaluate.py
  26. params:
  27. - evaluate.model
  28. - evaluate.seed
  29. - evaluate.split
Tip!

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

Comments

Loading...