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 827 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
  1. stages:
  2. prepare:
  3. cmd: python gene_expressions/prepare.py data.pkl
  4. deps:
  5. - data/raw/actual.csv
  6. - data/raw/data_set_ALL_AML_independent.csv
  7. - data/raw/data_set_ALL_AML_train.csv
  8. - gene_expressions/prepare.py
  9. outs:
  10. - data/prepared/data.pkl
  11. train:
  12. cmd: python gene_expressions/train.py data/prepared model.pkl
  13. deps:
  14. - data/prepared/data.pkl
  15. - gene_expressions/train.py
  16. outs:
  17. - model/random_forest_model.pkl
  18. evaluation:
  19. cmd: python gene_expressions/evaluate.py ROC_AUC_curve.png Confusion_Matrix.png
  20. deps:
  21. - data/prepared/data.pkl
  22. - gene_expressions/evaluate.py
  23. - model/random_forest_model.pkl
  24. outs:
  25. - reports/plots/Confusion_Matrix.png
  26. - reports/plots/ROC_AUC_curve.png
  27. metrics:
  28. - reports/metrics/eval.json:
  29. cache: false
Tip!

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

Comments

Loading...