8 lines
256 B
Bash
8 lines
256 B
Bash
#!/bin/sh
|
|
kaggle datasets download -d akash14/house-price-dataset
|
|
unzip -o house-price-dataset.zip
|
|
echo $CUTOFF
|
|
|
|
./Participants_Data_HPP/Train.csv | shuf | head -n $CUTOFF > data.txt
|
|
./Participants_Data_HPP/Test.csv | shuf | head -n $CUTOFF > dataTest.txt
|