ium_444417/startscript1.sh

8 lines
256 B
Bash
Raw Normal View History

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:15:17 +02:00
./Participants_Data_HPP/Train.csv | shuf | head -n $CUTOFF > data.txt
./Participants_Data_HPP/Test.csv | shuf | head -n $CUTOFF > dataTest.txt