added dvc yaml

This commit is contained in:
Mikołaj Pokrywka 2022-06-05 15:14:57 +02:00
parent 6a6dd022cf
commit 6869968863
4 changed files with 42 additions and 2 deletions

View File

@ -1,4 +1,4 @@
[core]
remote = ium_ssh_remote
['remote "ium_ssh_remote"']
url = ssh://ium-sftp@tzietkiewicz.vm.wmi.amu.edu.pl/ium-sftp
url = ssh://ium-sftp@tzietkiewicz.vm.wmi.amu.edu.pl

25
dvc.lock Normal file
View File

@ -0,0 +1,25 @@
schema: '2.0'
stages:
train:
cmd: python3 deepl.py 10
deps:
- path: real-or-fake-fake-jobposting-prediction.zip
md5: 720b87177496c52f028ec184935f8031
size: 16868281
outs:
- path: model
md5: a5a5e44c792a7b5c7b3b841677593df2
size: 4012127
evaluate:
cmd: python3 evaluation.py
deps:
- path: model
md5: a5a5e44c792a7b5c7b3b841677593df2
size: 4012127
outs:
- path: metrics.png
md5: 1144a6e9e28ae600f30835f7fb9a3314
size: 9952
- path: metrics.txt
md5: f9c1fd4d06b750e45fd72c32e022ec64
size: 73

14
dvc.yaml Normal file
View File

@ -0,0 +1,14 @@
stages:
train:
cmd: python3 deepl.py 50
deps:
- real-or-fake-fake-jobposting-prediction.zip
outs:
- model
evaluate:
cmd: python3 evaluation.py
deps:
- model
outs:
- metrics.png
- metrics.txt

View File

@ -11,3 +11,4 @@ sacred
pymongo
mlflow
dvc
dvc[ssh]