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 626 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. train:
  3. cmd: python src/models/train_model.py
  4. deps:
  5. - data/processed
  6. - src/models/train_model.py
  7. outs:
  8. - models:
  9. persist: true
  10. metrics:
  11. - reports/training_metrics.txt:
  12. cache: false
  13. eval:
  14. cmd: python src/models/predict_model.py
  15. deps:
  16. - data/processed
  17. - models
  18. - src/models/predict_model.py
  19. metrics:
  20. - reports/metrics.txt:
  21. cache: false
  22. process_data:
  23. cmd: python src/data/make_dataset.py
  24. deps:
  25. - data/raw
  26. - src/data/make_dataset.py
  27. outs:
  28. - data/processed:
  29. persist: true
Tip!

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

Comments

Loading...