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.lock 1.7 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
  1. schema: '2.0'
  2. stages:
  3. preprocess:
  4. cmd: python src/preprocess.py
  5. deps:
  6. - path: data/raw/diabetes.csv
  7. hash: md5
  8. md5: f2906818eda8fcfc8f8416557ab1e6df
  9. size: 23873
  10. - path: src/preprocess.py
  11. hash: md5
  12. md5: 7cbd42bdf80d8c066ba916d6a4bd6312
  13. size: 788
  14. params:
  15. params.yaml:
  16. preprocess.input: data/raw/diabetes.csv
  17. preprocess.output: data/processed/diabetes.csv
  18. outs:
  19. - path: data/processed/diabetes.csv
  20. hash: md5
  21. md5: 1c644ff1dd47bea0375d260747f2e40a
  22. size: 23106
  23. train:
  24. cmd: python src/train.py
  25. deps:
  26. - path: data/raw/diabetes.csv
  27. hash: md5
  28. md5: f2906818eda8fcfc8f8416557ab1e6df
  29. size: 23873
  30. - path: src/train.py
  31. hash: md5
  32. md5: d4dea4a8c1b124f29739180ef544f460
  33. size: 4187
  34. params:
  35. params.yaml:
  36. train.data: data/processed/diabetes.csv
  37. train.max_depth:
  38. - 5
  39. - 10
  40. - None
  41. train.min_samples_leaf:
  42. - 1
  43. - 2
  44. train.min_samples_split:
  45. - 2
  46. - 5
  47. train.model: models/diabetes_model.pkl
  48. train.n_estimators:
  49. - 100
  50. - 200
  51. train.random_state: 42
  52. outs:
  53. - path: models/diabetes_model.pkl
  54. hash: md5
  55. md5: 0b623fd52b625913d5e179a901afc1f6
  56. size: 1441495
  57. evaluate:
  58. cmd: python src/evaluate.py
  59. deps:
  60. - path: data/processed/diabetes.csv
  61. hash: md5
  62. md5: 1c644ff1dd47bea0375d260747f2e40a
  63. size: 23106
  64. - path: models/diabetes_model.pkl
  65. hash: md5
  66. md5: 0b623fd52b625913d5e179a901afc1f6
  67. size: 1441495
  68. - path: src/evaluate.py
  69. hash: md5
  70. md5: 381b14b7a62a46dcb068343819b4cec1
  71. size: 1190
Tip!

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

Comments

Loading...