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.5 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
  1. schema: '2.0'
  2. stages:
  3. preprocess:
  4. cmd: python src/preprocess.py
  5. deps:
  6. - path: data/raw/data.csv
  7. hash: md5
  8. md5: f2906818eda8fcfc8f8416557ab1e6df
  9. size: 23873
  10. - path: src/preprocess.py
  11. hash: md5
  12. md5: 77b14a8d90296d66951b53bd3ac46a5d
  13. size: 507
  14. params:
  15. params.yaml:
  16. preprocess.input: data/raw/data.csv
  17. preprocess.output: data/processed/data.csv
  18. outs:
  19. - path: data/processed/data.csv
  20. hash: md5
  21. md5: bea5b9be0aee81bfecbe7100ed8b90da
  22. size: 23961
  23. train:
  24. cmd: python src/train.py
  25. deps:
  26. - path: data/raw/data.csv
  27. hash: md5
  28. md5: f2906818eda8fcfc8f8416557ab1e6df
  29. size: 23873
  30. - path: src/train.py
  31. hash: md5
  32. md5: af9ec505ebf475dffc7102f9746ea931
  33. size: 3726
  34. params:
  35. params.yaml:
  36. train.data: data/raw/data.csv
  37. train.max_depth: 5
  38. train.model: models/model.pkl
  39. train.n_estimators: 100
  40. train.random_state: 42
  41. outs:
  42. - path: models/model.pkl
  43. hash: md5
  44. md5: 51d85307c0ac1566e9968b532b9c2c1c
  45. size: 2293519
  46. evaluate:
  47. cmd: python src/evaluate.py
  48. deps:
  49. - path: data/raw/data.csv
  50. hash: md5
  51. md5: f2906818eda8fcfc8f8416557ab1e6df
  52. size: 23873
  53. - path: models/model.pkl
  54. hash: md5
  55. md5: 51d85307c0ac1566e9968b532b9c2c1c
  56. size: 2293519
  57. - path: src/evaluate.py
  58. hash: md5
  59. md5: 597f633d7aa0088bbf1d08b8309edaed
  60. size: 1124
Tip!

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

Comments

Loading...