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

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

Comments

Loading...