2022-03-24 21:26:43 +01:00
|
|
|
#!/bin/sh
|
2022-03-24 17:40:59 +01:00
|
|
|
kaggle datasets download -d akash14/house-price-dataset
|
|
|
|
unzip -o house-price-dataset.zip
|
2022-03-28 10:51:37 +02:00
|
|
|
echo $CUTOFF
|
2022-03-28 11:08:37 +02:00
|
|
|
|
2022-03-28 11:35:26 +02:00
|
|
|
./Participants_Data_HPP/Train.csv | head -n $CUTOFF > data.txt
|
|
|
|
./Participants_Data_HPP/Test.csv | head -n $CUTOFF > dataTest.txt
|