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 565 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
  1. stages:
  2. preprocess:
  3. cmd: python src/preprocess.py
  4. deps:
  5. - data/raw
  6. outs:
  7. - data/preprocessed/hour_clean.csv
  8. split:
  9. cmd: python src/split.py
  10. deps:
  11. - data/preprocessed/hour_clean.csv
  12. - src/preprocess.py
  13. params:
  14. - split.ratio
  15. outs:
  16. - data/preprocessed/test.csv
  17. - data/preprocessed/train.csv
  18. train:
  19. cmd: python src/train.py
  20. deps:
  21. - data/preprocessed/test.csv
  22. - data/preprocessed/train.csv
  23. outs:
  24. - model/catboost.pickle
  25. metrics:
  26. - evaluation/metrics.json:
  27. cache: false
Tip!

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

Comments

Loading...