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 276 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
  1. stages:
  2. prepare:
  3. cmd: python src/prepare.py data/raw/rednn1.h5
  4. deps:
  5. - data/raw/rednn1.h5
  6. - src/prepare.py
  7. outs:
  8. - data/prepared/
  9. train:
  10. cmd: python src/train.py
  11. deps:
  12. - data/prepared/
  13. - src/train.py
  14. outs:
  15. - model/model.pkl
Tip!

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

Comments

Loading...