From 6a08d373ae4ba1bc9193411ebb5c6b7118af665d Mon Sep 17 00:00:00 2001 From: mle-els <57996662+mle-els@users.noreply.github.com> Date: Tue, 24 Mar 2020 12:37:27 +0100 Subject: [PATCH] fix typo --- code/run.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/run.sh b/code/run.sh index 1bcf2ff..21c30d3 100644 --- a/code/run.sh +++ b/code/run.sh @@ -9,7 +9,7 @@ FIRST_RUN=${FIRST_RUN:- 0} if [ $FIRST_RUN -eq 1 ]; then echo 'Start data preprocessing' ## compile word2vec for embedding learning - gcc word2vec.c -o word2veec -lm -pthread -O2 -Wall -funroll-loops -Wno-unused-result + gcc word2vec.c -o word2vec -lm -pthread -O2 -Wall -funroll-loops -Wno-unused-result ## create initial folder if not exist if [ ! -d ../data/$corpusName/init ]; then