From 08db5599e3a9ba94b26916a88002361606a98353 Mon Sep 17 00:00:00 2001 From: tslil Date: Sat, 9 Jan 2021 00:42:19 -0500 Subject: Fixed comments during extraction --- extract.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/extract.sh b/extract.sh index e0cb691..89518dd 100755 --- a/extract.sh +++ b/extract.sh @@ -30,11 +30,11 @@ process() { num_games=$2 ./pptdb "$size" "data/playtak-$size" > "data/check-$size" tail -n22 "data/check-$size" - echo -e "\tStripping overflows and illegal games..." + echo -ne "\tStripping overflows and illegal games..." grep -Fvxf "data/check-$size" "data/playtak-$size" > "data/good-playtak-$size" - echo -e "\tChoosing $num_games from what remains ..." + echo -e "Done\n\tChoosing $num_games from what remains ..." shuf -n $num_games "data/good-playtak-$size" > "data/smalltak-$size" - echo -en "\tGenerating training data... " + echo -en "Done\n\tGenerating training data... " ./pptdb "$size" "data/smalltak-$size" generate echo -e "\tDone, $(wc -l data/training-$size.csv | cut -d\ -f1) samples." echo -en "\tShuffling... " -- cgit v1.2.3