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 438 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
  1. stages:
  2. process_data:
  3. cmd: python src/process_data.py
  4. deps:
  5. - config/main.yaml
  6. - config/process
  7. - data/raw
  8. - src/process_data.py
  9. outs:
  10. - data/intermediate:
  11. persist: true
  12. segment:
  13. cmd: python src/segment.py
  14. deps:
  15. - config/main.yaml
  16. - config/segment
  17. - data/intermediate
  18. - src/segment.py
  19. outs:
  20. - data/final:
  21. persist: true
  22. - image:
  23. persist: true
Tip!

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

Comments

Loading...