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 433 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
  1. stages:
  2. process_data:
  3. cmd: python src/process.py
  4. deps:
  5. - config/main.yaml
  6. - config/process
  7. - data/raw
  8. - src/process.py
  9. outs:
  10. - data/processed:
  11. persist: true
  12. train_model:
  13. cmd: python src/train_model.py
  14. deps:
  15. - config/main.yaml
  16. - config/model
  17. - data/processed
  18. - src/train_model.py
  19. outs:
  20. - data/final:
  21. persist: true
  22. - models:
  23. persist: true
Tip!

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

Comments

Loading...