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 563 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
  1. stages:
  2. split:
  3. cmd: python src/split.py
  4. deps:
  5. - data/raw/train
  6. - src/split.py
  7. params:
  8. - split.ratio
  9. outs:
  10. - data/raw/test
  11. preprocess:
  12. cmd: python src/preprocess.py
  13. deps:
  14. - data/raw
  15. - src/preprocess.py
  16. params:
  17. - preprocess
  18. outs:
  19. - data/prepared
  20. train:
  21. cmd: python src/train.py
  22. deps:
  23. - data
  24. - src/train.py
  25. outs:
  26. - evaluation/report.html:
  27. cache: false
  28. - models
  29. metrics:
  30. - evaluation/metrics.json:
  31. cache: false
  32. plots:
  33. - evaluation/plots
Tip!

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

Comments

Loading...