Merge remote-tracking branch 'origin/main'
This commit is contained in:
commit
5ff9556380
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
|
5
data/car_prices.csv.dvc
Normal file
5
data/car_prices.csv.dvc
Normal file
@ -0,0 +1,5 @@
|
||||
outs:
|
||||
- md5: e600483fd4125216e9bfdc962f26565f
|
||||
size: 88047552
|
||||
hash: md5
|
||||
path: car_prices.csv
|
27
dvc.yaml
Normal file
27
dvc.yaml
Normal 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
|
Loading…
Reference in New Issue
Block a user