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

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

Comments

Loading...