Merge remote-tracking branch 'origin/main'

This commit is contained in:
Krzysztof Raczyński 2024-05-28 23:55:39 +02:00
commit 5ff9556380
5 changed files with 42 additions and 0 deletions

3
.dvc/.gitignore vendored Normal file
View File

@ -0,0 +1,3 @@
/config.local
/tmp
/cache

4
.dvc/config Normal file
View 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
View 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

5
data/car_prices.csv.dvc Normal file
View File

@ -0,0 +1,5 @@
outs:
- md5: e600483fd4125216e9bfdc962f26565f
size: 88047552
hash: md5
path: car_prices.csv

27
dvc.yaml Normal file
View File

@ -0,0 +1,27 @@
stages:
download:
cmd: bash create-dataset.sh 10000
deps:
- create-dataset.sh
outs:
- data/car_prices.csv
- data/car_prices_test.csv
- data/car_prices_dev.csv
- data/car_prices_train.csv
train:
cmd: python model.py
deps:
- model.py
- data/car_prices_train.csv
outs:
- car_prices_predict_model.h5
predict:
cmd: python predict.py
deps:
- predict.py
- data/car_prices_test.csv
- car_prices_predict_model.h5
outs:
- predicted_selling_prices.csv