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 464 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
26
27
28
  1. stages:
  2. fetch_data:
  3. cmd: dvc pull .
  4. outs:
  5. - h5_files/
  6. get_data:
  7. cmd: python get_data.py
  8. deps:
  9. - get_data.py
  10. outs:
  11. - data_raw.csv
  12. process:
  13. cmd: python process_data.py
  14. deps:
  15. - process_data.py
  16. - data_raw.csv
  17. outs:
  18. - data_processed.csv
  19. train:
  20. cmd: python train.py
  21. deps:
  22. - train.py
  23. - data_processed.csv
  24. outs:
  25. - by_region.png
  26. metrics:
  27. - metrics.json:
  28. cache: false
Tip!

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

Comments

Loading...