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.0 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
  1. stages:
  2. data_ingestion:
  3. cmd: python src/deppClassifier/pipeline/stage_01_data_ingestion.py
  4. deps:
  5. - src/deppClassifier/pipeline/stage_01_data_ingestion.py
  6. - configs/config.yaml
  7. outs:
  8. - artifacts/data_ingestion/PetImages
  9. prepare_base_model:
  10. cmd: python src/deppClassifier/pipeline/stage_02_prepare_base_model.py
  11. deps:
  12. - src/deppClassifier/pipeline/stage_02_prepare_base_model.py
  13. - configs/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/deppClassifier/pipeline/stage_03_training.py
  24. deps:
  25. - src/deppClassifier/pipeline/stage_03_training.py
  26. - src/deppClassifier/components/prepare_callback.py
  27. - configs/config.yaml
  28. - artifacts/data_ingestion/PetImages
  29. - artifacts/prepare_base_model
  30. params:
  31. - IMAGE_SIZE
  32. - EPOCHS
  33. - BATCH_SIZE
  34. - AUGMENTATION
  35. outs:
  36. - artifacts/training/model.h5
Tip!

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

Comments

Loading...