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 678 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
  1. stages:
  2. preprocess:
  3. cmd: python src/preprocess.py
  4. deps:
  5. - data/raw/diabetes.csv
  6. - src/preprocess.py
  7. params:
  8. - preprocess.input
  9. - preprocess.output
  10. outs:
  11. - data/processed/diabetes.csv
  12. train:
  13. cmd: python src/train.py
  14. deps:
  15. - data/raw/diabetes.csv
  16. - src/train.py
  17. params:
  18. - train.data
  19. - train.max_depth
  20. - train.min_samples_leaf
  21. - train.min_samples_split
  22. - train.model
  23. - train.n_estimators
  24. - train.random_state
  25. outs:
  26. - models/diabetes_model.pkl
  27. evaluate:
  28. cmd: python src/evaluate.py
  29. deps:
  30. - data/processed/diabetes.csv
  31. - models/diabetes_model.pkl
  32. - src/evaluate.py
Tip!

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

Comments

Loading...