-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdvc.yaml
39 lines (35 loc) · 1.02 KB
/
dvc.yaml
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
stages:
data_ingestion:
cmd: python src/chestCancerClassification/pipeline/stage_01_data_ingestion.py
deps:
- src/chestCancerClassification/pipeline/stage_01_data_ingestion.py
- config/config.yaml
outs:
- artifacts/data_ingestion
prepare_base_model:
cmd: python src/chestCancerClassification/pipeline/stage_02_prepare_base_model.py
deps:
- src/chestCancerClassification/pipeline/stage_02_prepare_base_model.py
- config/config.yaml
params:
- IMAGE_SIZE
- INCLUDE_TOP
- CLASSES
- WEIGHTS
- LEARNING_RATE
outs:
- artifacts/base_models
training:
cmd: python src/chestCancerClassification/pipeline/stage_03_model_training.py
deps:
- src/chestCancerClassification/pipeline/stage_03_model_training.py
- config/config.yaml
- artifacts/data_ingestion
- artifacts/prepare_base_model
params:
- IMAGE_SIZE
- EPOCHS
- BATCH_SIZE
- AUGMENTATION
outs:
- artifacts/training/model.h5