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

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

Comments

Loading...