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 653 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
  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/train
  13. deps:
  14. - src/code/training.py
  15. - src/data/processed/train
  16. outs:
  17. - src/models/
  18. eval:
  19. cmd: python3 src/code/eval.py src/data/processed/test
  20. deps:
  21. - src/code/eval.py
  22. - src/models/model.pth
  23. - src/data/processed/test
  24. outs:
  25. - src/eval/
Tip!

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

Comments

Loading...