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.4 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
  1. stages:
  2. data_ingestion:
  3. cmd: python src/cnnClassifier/pipeline/stage_01_data_ingestion.py
  4. deps:
  5. - src/cnnClassifier/pipeline/stage_01_data_ingestion.py
  6. - config/config.yaml
  7. outs:
  8. - artifacts/data_ingestion/Chest-CT-Scan-data
  9. prepare_base_model:
  10. cmd: python src/cnnClassifier/pipeline/stage_02_prepare_base_model.py
  11. deps:
  12. - src/cnnClassifier/pipeline/stage_02_prepare_base_model.py
  13. - config/config.yaml
  14. params:
  15. - IMAGE_SIZE
  16. - INCLUDE_TOP
  17. - CLASSES
  18. - WEIGHTS
  19. - LEARNING_RATE
  20. outs:
  21. - artifacts/prepare_base_model
  22. training:
  23. cmd: python src/cnnClassifier/pipeline/stage_03_model_trainer.py
  24. deps:
  25. - src/cnnClassifier/pipeline/stage_03_model_trainer.py
  26. - config/config.yaml
  27. - artifacts/data_ingestion/Chest-CT-Scan-data
  28. - artifacts/prepare_base_model
  29. params:
  30. - IMAGE_SIZE
  31. - EPOCHS
  32. - BATCH_SIZE
  33. - AUGMENTATION
  34. outs:
  35. - artifacts/training/model.h5
  36. evaluation:
  37. cmd: python src/cnnClassifier/pipeline/stage_04_model_evaluation.py
  38. deps:
  39. - src/cnnClassifier/pipeline/stage_04_model_evaluation.py
  40. - config/config.yaml
  41. - artifacts/data_ingestion/Chest-CT-Scan-data
  42. - artifacts/training/model.h5
  43. params:
  44. - IMAGE_SIZE
  45. - BATCH_SIZE
  46. metrics:
  47. - scores.json:
  48. cache: false
Tip!

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

Comments

Loading...