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
51
52
53
54
55
56
  1. stages:
  2. prepare:
  3. cmd: python src/prepare.py data/data.xml
  4. deps:
  5. - data/data.xml
  6. - src/prepare.py
  7. params:
  8. - prepare.seed
  9. - prepare.split
  10. outs:
  11. - data/prepared
  12. featurize:
  13. cmd: python src/featurization.py data/prepared data/features
  14. deps:
  15. - data/prepared
  16. - src/featurization.py
  17. params:
  18. - featurize.max_features
  19. - featurize.ngrams
  20. outs:
  21. - data/features
  22. train:
  23. cmd: python src/train.py data/features model.pkl
  24. deps:
  25. - data/features
  26. - src/train.py
  27. params:
  28. - train.min_split
  29. - train.n_est
  30. - train.seed
  31. outs:
  32. - model.pkl
  33. evaluate:
  34. cmd: python src/evaluate.py model.pkl data/features
  35. deps:
  36. - data/features
  37. - model.pkl
  38. - src/evaluate.py
  39. metrics:
  40. - evaluation.json:
  41. cache: false
  42. plots:
  43. - evaluation/importance.png
  44. - evaluation/plots/confusion_matrix.json:
  45. cache: false
  46. template: confusion
  47. x: actual
  48. y: predicted
  49. - evaluation/plots/precision_recall.json:
  50. cache: false
  51. x: recall
  52. y: precision
  53. - evaluation/plots/roc.json:
  54. cache: false
  55. x: fpr
  56. y: tpr
Tip!

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

Comments

Loading...