-
Notifications
You must be signed in to change notification settings - Fork 0
/
script.sh
30 lines (23 loc) · 815 Bytes
/
script.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
echo "Starting now. Downloading the data set..."
kaggle competitions download -c house-prices-advanced-regression-techniques
unzip house-prices-advanced-regression-techniques.zip
rm -r data_description.txt
rm -r sample_submission.csv
rm -r house-prices-advanced-regression-techniques.zip
mkdir data/
mv train.csv data/
mv test.csv data/
echo "Processing the data set now..."
python src/preprocess.py
rm -r data/train.csv
rm -r data/test.csv
echo "Done processing! :)"
echo "Beginning to run various models. Starting with random forest regression..."
python src/random_forest.py
echo "Now running support vector regression..."
python src/support_vector.py
echo "Now running decision tree regression..."
python src/decision_tree.py
echo "Now running XGBoost regression..."
python src/xgb.py
echo "All done! :)"