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 461 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. process_data:
  3. cmd: python3 src/code/make_dataset.py src/data/raw/nyu_depth_v2_labeled.mat src/data/raw/splits.mat
  4. src/data/processed
  5. deps:
  6. - src/code/make_dataset.py
  7. - src/data/raw/nyu_depth_v2_labeled.mat
  8. - src/data/raw/splits.mat
  9. outs:
  10. - src/data/processed/
  11. train:
  12. cmd: python3 src/code/training.py src/data/processed
  13. deps:
  14. - src/code/training.py
  15. - src/data/processed/
  16. outs:
  17. - src/models/
Tip!

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

Comments

Loading...