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