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

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

Comments

Loading...