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 344 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
  1. stages:
  2. train:
  3. cmd: python src/models/train_model.py
  4. deps:
  5. - data
  6. - src/models/train_model.py
  7. predict:
  8. cmd: python src/models/predict_model.py
  9. deps:
  10. - data
  11. - src/models/predict_model.py
  12. metrics:
  13. - reports/metrics.json:
  14. cache: false
  15. plots:
  16. - reports/loss.csv:
  17. cache: false
Tip!

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

Comments

Loading...