From 15869a46a8f8019eee7eaeb0924674c12942096c Mon Sep 17 00:00:00 2001 From: lewtun Date: Tue, 3 Sep 2024 13:18:52 +0200 Subject: [PATCH] Use correct Spacy model in setup.sh This PR fixes a bug where the wrong model is downloaded in `setup.sh`. The fix also aligns with `setup_arm.sh` --- setup.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.sh b/setup.sh index b42e91c..58bfd9d 100755 --- a/setup.sh +++ b/setup.sh @@ -45,7 +45,7 @@ gdown https://drive.google.com/uc?id=14Kb5SPBk_jfdLZ_CDBNitW98QLDlKR5O # items_h cd .. # Download spaCy large NLP model -python -m spacy download en_core_web_lg +python -m spacy download en_core_web_sm # Build search engine index cd search_engine @@ -70,4 +70,4 @@ cd user_session_logs/ echo "Downloading 50 example human trajectories..." get_human_trajs echo "Downloading example trajectories complete" -cd .. \ No newline at end of file +cd ..