diff --git a/startscript1.sh b/startscript1.sh index 60f24eb..88d2abd 100644 --- a/startscript1.sh +++ b/startscript1.sh @@ -3,5 +3,5 @@ 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 +shuf ./Participants_Data_HPP/Train.csv | head -n $CUTOFF > data.txt +shuf ./Participants_Data_HPP/Test.csv | head -n $CUTOFF > dataTest.txt