-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdvc.yaml
52 lines (49 loc) · 1.24 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
40
41
42
43
44
45
46
47
48
49
50
51
52
stages:
data_ingestion:
cmd: python src\pipeline\STAGE1_data_ingestion.py
deps:
- src\pipeline\STAGE1_data_ingestion.py
- config\config.yaml
outs:
- artifacts\data_ingestion\Chicken-fecal-images
base_model:
cmd: python src\pipeline\STAGE2_base_model.py
deps:
- src\pipeline\STAGE2_base_model.py
- config\config.yaml
params:
- IMAGE_SIZE
- INCLUDE_TOP
- CLASSES
- WEIGHTS
- LEARNING_RATE
outs:
- artifacts\base_model
training:
cmd: python src\pipeline\STAGE3_training.py
deps:
- src\pipeline\STAGE3_training.py
- src\components\callbacks.py
- config\config.yaml
- artifacts\data_ingestion\Chicken-fecal-images
- artifacts\base_model
params:
- IMAGE_SIZE
- EPOCHS
- BATCH_SIZE
- AUGMENTATION
outs:
- artifacts\training\model.keras
evaluation:
cmd: python src\pipeline\STAGE4_evaluation.py
deps:
- src\pipeline\STAGE4_evaluation.py
- config\config.yaml
- artifacts\data_ingestion\Chicken-fecal-images
- artifacts\training\model.keras
params:
- IMAGE_SIZE
- BATCH_SIZE
metrics:
- artifacts\evaluation\scores.json:
cache: false