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 896 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
30
31
  1. stages:
  2. data_ingestion:
  3. cmd: python src/MalariaClassifier/pipeline/stage_01_data_ingestion.py
  4. deps:
  5. - src/MalariaClassifier/pipeline/stage_01_data_ingestion.py
  6. - config/config.yaml
  7. outs:
  8. - artifacts/data_ingestion/dataset
  9. training:
  10. cmd: python src/MalariaClassifier/pipeline/stage_02_training.py
  11. deps:
  12. - src/MalariaClassifier/pipeline/stage_02_training.py
  13. - config/config.yaml
  14. - params.yaml
  15. - artifacts/data_ingestion/dataset
  16. outs:
  17. - artifacts/training/xception_model.h5
  18. evalution:
  19. cmd: python src/MalariaClassifier/pipeline/stage_03_evalution.py
  20. deps:
  21. - src/MalariaClassifier/pipeline/stage_03_evalution.py
  22. - artifacts/data_ingestion/dataset
  23. - params.yaml
  24. - config/config.yaml
  25. - artifacts/training/xception_model.h5
  26. metrics:
  27. - scores.json:
  28. cache: False
Tip!

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

Comments

Loading...