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 363 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. data-split:
  3. cmd: python src/data-prep.py
  4. deps:
  5. - classy/
  6. - src/data-prep.py
  7. training:
  8. cmd: python src/train_model.py
  9. deps:
  10. - classy/train_data
  11. - classy/val_data
  12. - src/train_model.py
  13. params:
  14. - training.epochs
  15. - training.batch_size
  16. metrics:
  17. - scores.json:
  18. cache: false
Tip!

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

Comments

Loading...