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 1.2 KB

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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
  1. stages:
  2. data-split:
  3. cmd: python3 src/data_split.py
  4. deps:
  5. - data/raw_data/clean_data.csv
  6. - src/data_split.py
  7. params:
  8. - data-split.split
  9. - data-split.seed
  10. outs:
  11. - data/processed_data/x_test.npy
  12. - data/processed_data/x_train.npy
  13. - data/processed_data/y_test.npy
  14. - data/processed_data/y_train.npy
  15. normalize:
  16. cmd: python3 src/normalize.py
  17. deps:
  18. - data/processed_data/x_train.npy
  19. - data/processed_data/x_test.npy
  20. - src/normalize.py
  21. outs:
  22. - data/scaling_model.pkl
  23. training:
  24. cmd: python3 src/training.py
  25. deps:
  26. - data/processed_data/x_train.npy
  27. - data/processed_data/y_train.npy
  28. - data/scaling_model.pkl
  29. - src/training.py
  30. params:
  31. - training.n_est
  32. - training.m_depth
  33. - training.lr
  34. - training.min_split
  35. - training.min_leaf
  36. outs:
  37. - data/gbrt_model.pkl
  38. evaluate:
  39. cmd: python3 src/evaluate.py
  40. deps:
  41. - data/processed_data/x_test.npy
  42. - data/processed_data/y_test.npy
  43. - data/scaling_model.pkl
  44. - data/gbrt_model.pkl
  45. - src/evaluate.py
  46. outs:
  47. - data/prediction.csv
  48. metrics:
  49. - scores.json:
  50. cache: false
Tip!

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

Comments

Loading...