dvc.yml update
All checks were successful
s434784-evaluation/pipeline/head This commit looks good
s434784-training/pipeline/head This commit looks good

This commit is contained in:
Maciej Sobkowiak 2021-06-12 23:36:06 +02:00
parent 3a384a3586
commit 265c9a3423
2 changed files with 30 additions and 3 deletions

28
dvc.lock Normal file
View File

@ -0,0 +1,28 @@
schema: '2.0'
stages:
preprocess:
cmd: python preprocesing.py 1000
deps:
- path: preprocesing.py
md5: 5fc702becd41811c92fc85e4ec899d52
size: 904
- path: who_suicide_statistics.csv
md5: ba0fd3d7333524d077791b70048b5067
size: 1895346
outs:
- path: train.csv
md5: eefeb0d1ce453b32aea98b458002f8b0
size: 164096
train:
cmd: python training.py 5 10
deps:
- path: train.csv
md5: eefeb0d1ce453b32aea98b458002f8b0
size: 164096
- path: training.py
md5: d08d4fc890592243d017e91335c2e1d0
size: 2598
outs:
- path: suicide_model.h5
md5: 9595399d5870d7a0352a7c56c5aaa8f1
size: 12496

View File

@ -1,17 +1,16 @@
stages:
preprocess:
cmd: python3 preprocesing.py
cmd: python3 preprocesing.py 1000
deps:
- preprocesing.py
- who_suicide_statistics.csv
outs:
- train.csv
train:
cmd: python3 training.py
cmd: python3 training.py 5 10
deps:
- training.py
- train.csv
outs:
- results.csv
- suicide_model.h5