dvc
This commit is contained in:
parent
887c1af427
commit
354e8a6bbc
3
.dvc/.gitignore
vendored
Normal file
3
.dvc/.gitignore
vendored
Normal file
@ -0,0 +1,3 @@
|
||||
/config.local
|
||||
/tmp
|
||||
/cache
|
4
.dvc/config
Normal file
4
.dvc/config
Normal file
@ -0,0 +1,4 @@
|
||||
[core]
|
||||
remote = ium_ssh_remote
|
||||
['remote "ium_ssh_remote"']
|
||||
url = ssh://ium-sftp@tzietkiewicz.vm.wmi.amu.edu.pl
|
3
.dvcignore
Normal file
3
.dvcignore
Normal file
@ -0,0 +1,3 @@
|
||||
# Add patterns of files dvc should ignore, which could improve
|
||||
# the performance. Learn more at
|
||||
# https://dvc.org/doc/user-guide/dvcignore
|
2
.gitignore
vendored
2
.gitignore
vendored
@ -14,3 +14,5 @@ ipython_config.py
|
||||
|
||||
__pycache__/
|
||||
|
||||
/train
|
||||
/test
|
||||
|
23
dvc.yaml
Normal file
23
dvc.yaml
Normal file
@ -0,0 +1,23 @@
|
||||
stages:
|
||||
prepare_data:
|
||||
cmd: ./download.sh
|
||||
deps:
|
||||
- download.sh
|
||||
outs:
|
||||
- data/raw
|
||||
|
||||
train:
|
||||
cmd: python train.py
|
||||
deps:
|
||||
- train.py
|
||||
- data/raw
|
||||
outs:
|
||||
- model.pth
|
||||
|
||||
test:
|
||||
cmd: python test.py
|
||||
deps:
|
||||
- test.py
|
||||
- model.pth
|
||||
outs:
|
||||
- predictions.csv
|
6
test.dvc
Normal file
6
test.dvc
Normal file
@ -0,0 +1,6 @@
|
||||
outs:
|
||||
- md5: 31361b67b19276a528020b964be5a880.dir
|
||||
size: 11777108
|
||||
nfiles: 2000
|
||||
hash: md5
|
||||
path: test
|
Loading…
Reference in New Issue
Block a user