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 676 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
29
30
31
32
33
34
35
36
  1. stages:
  2. process_data:
  3. cmd: python src/process_data.py
  4. deps:
  5. - config/main.yaml
  6. - data/raw
  7. - params.yml
  8. - src/main.py
  9. - src/process_data.py
  10. outs:
  11. - data/intermediate:
  12. persist: true
  13. segment:
  14. cmd: python src/segment.py
  15. deps:
  16. - config/main.yaml
  17. - data/intermediate
  18. - params.yml
  19. - src/main.py
  20. - src/segment.py
  21. outs:
  22. - data/final:
  23. persist: true
  24. - image:
  25. persist: true
  26. - model/cluster.pkl:
  27. persist: true
  28. metrics:
  29. - metrics.csv:
  30. persist: true
  31. analyze:
  32. cmd: python src/run_notebook.py
  33. deps:
  34. - notebook/analyze_data.ipynb
  35. - data/final
Tip!

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

Comments

Loading...