2022-06-04 22:15:20 +02:00
|
|
|
stages:
|
|
|
|
prepare:
|
|
|
|
cmd: python3 script_prepare.py data/Car_Prices_Poland_Kaggle.csv
|
|
|
|
deps:
|
|
|
|
- data/Car_Prices_Poland_Kaggle.csv
|
|
|
|
- script_prepare.py
|
|
|
|
outs:
|
|
|
|
- data/Car_Prices_Poland_Kaggle_dev.csv
|
|
|
|
- data/Car_Prices_Poland_Kaggle_train.csv
|
|
|
|
- data/Car_Prices_Poland_Kaggle_test.csv
|
|
|
|
train:
|
2022-06-05 10:08:50 +02:00
|
|
|
cmd: python3 lab05_deepLearning.py 70
|
2022-06-04 22:15:20 +02:00
|
|
|
deps:
|
|
|
|
- data/Car_Prices_Poland_Kaggle_dev.csv
|
|
|
|
- data/Car_Prices_Poland_Kaggle_train.csv
|
|
|
|
- data/Car_Prices_Poland_Kaggle_test.csv
|
|
|
|
outs:
|
|
|
|
- CarPrices_pytorch_model.pkl
|
|
|
|
- prediction_results.csv
|
|
|
|
evaluate:
|
|
|
|
cmd: python3 lab10_evaluate.py
|
|
|
|
deps:
|
|
|
|
- CarPrices_pytorch_model.pkl
|