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 660 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. featurization:
  3. cmd: python code/featurization.py
  4. deps:
  5. - code/featurization.py
  6. - data/test_data.csv
  7. - data/train_data.csv
  8. outs:
  9. - data/norm_params.json
  10. - data/processed_test_data.npy
  11. - data/processed_train_data.npy
  12. training:
  13. cmd: python code/train_model.py
  14. deps:
  15. - code/train_model.py
  16. - data/processed_train_data.npy
  17. outs:
  18. - data/model.pkl
  19. metrics:
  20. - metrics/train_metric.json:
  21. cache: false
  22. eval:
  23. cmd: python code/eval.py
  24. deps:
  25. - code/eval.py
  26. - data/model.pkl
  27. - data/processed_test_data.npy
  28. metrics:
  29. - metrics/eval.json:
  30. cache: false
Tip!

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

Comments

Loading...