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 430 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
  1. stages:
  2. models:
  3. cmd: echo "This is the model training stage" >&2 && exit 1
  4. deps:
  5. - data/processed
  6. outs:
  7. - models
  8. eval:
  9. cmd: echo "This is the model evalualtion stage" >&2 && exit 1
  10. deps:
  11. - models
  12. metrics:
  13. - metrics/metrics.json:
  14. cache: false
  15. process_data:
  16. cmd: echo "This is the data processing stage" >&2 && exit 1
  17. deps:
  18. - data/raw
  19. outs:
  20. - data/processed
Tip!

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

Comments

Loading...