-
Notifications
You must be signed in to change notification settings - Fork 0
/
dvc.yaml
39 lines (36 loc) · 809 Bytes
/
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
params:
- params.yaml
stages:
data_ingestion:
cmd: python -m src.ingestion
deps:
- src/ingestion.py
params:
- dataset
- ingestion
outs:
- ${ingestion.processed_train_path}
- ${ingestion.processed_test_path}
model_building:
cmd: python -m src.building
deps:
- ${ingestion.processed_train_path}
- src/building.py
params:
- building.model
- building.vectorizer
outs:
- ${building.model.path}
- ${building.vectorizer.path}
model_evaluation:
cmd: python -m src.evaluation
deps:
- ${ingestion.processed_test_path}
- ${building.model.path}
- ${building.vectorizer.path}
- src/evaluation.py
params:
- evaluation
- mlflow
outs:
- mlflow_run_info.json