From 71269c976c23a4924ba01715f9715bce3955b038 Mon Sep 17 00:00:00 2001 From: Maciej Tyczynski Date: Mon, 17 Apr 2023 21:50:09 +0200 Subject: [PATCH] testing sh file --- getdata.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/getdata.sh b/getdata.sh index e609376..8c9fb3e 100644 --- a/getdata.sh +++ b/getdata.sh @@ -2,7 +2,7 @@ wget -O wine.csv https://huggingface.co/datasets/mstz/wine/raw/main/Wine_Quality_Data.csv num_rows=$(($(wc -l < wine.csv) - 1)) - +echo "num_rows=$num_rows" CUTOFF=${1:-num_rows} train_size=$((CUTOFF * 80 / 100))