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 453 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
  1. stages:
  2. modeling:
  3. cmd: python modeling/src/train.py
  4. deps:
  5. - data_labeling/data
  6. - data_processing/src/const.yaml
  7. - data_processing/src/data_processing.py
  8. - modeling/src/const.yaml
  9. - modeling/src/train.py
  10. outs:
  11. - evaluating/eval/metrics/metrics.csv:
  12. cache: false
  13. persist: true
  14. - evaluating/eval/params/params.yml:
  15. cache: false
  16. persist: true
  17. - prod_model:
  18. persist: true
Tip!

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

Comments

Loading...