From b8b0e6fce119a52363f059f0da2820e0b5fefa84 Mon Sep 17 00:00:00 2001 From: Ilya Razenshteyn Date: Mon, 30 Nov 2015 12:25:43 -0800 Subject: [PATCH] adjust glove.sh to the new URLs for the GloVe datasets --- install/glove.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/install/glove.sh b/install/glove.sh index c41e94105..f6b1c1693 100644 --- a/install/glove.sh +++ b/install/glove.sh @@ -1,5 +1,5 @@ cd "$(dirname "$0")" -wget "http://www-nlp.stanford.edu/data/glove.twitter.27B.100d.txt.gz" -gunzip -d glove.twitter.27B.100d.txt.gz +wget "http://nlp.stanford.edu/data/glove.twitter.27B.zip" +unzip glove.twitter.27B.zip cut -d " " -f 2- glove.twitter.27B.100d.txt > glove.txt # strip first column -rm glove.twitter.27B.100d.txt +rm glove.twitter.27B.*