From 1982f5bacdd30d24df66402d04ec314090d245e7 Mon Sep 17 00:00:00 2001 From: Robert Clark Date: Fri, 30 Apr 2021 15:48:22 -0500 Subject: [PATCH] [BERT/PyT] Update GLUE Download Tool The linked GLUE downloader script has several issues which prevent it from downloading the MRPC components. Creating a new fork of the linked gist allows these items to be sorted out. Signed-Off-By: Robert Clark --- PyTorch/LanguageModeling/BERT/data/GLUEDownloader.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PyTorch/LanguageModeling/BERT/data/GLUEDownloader.py b/PyTorch/LanguageModeling/BERT/data/GLUEDownloader.py index abff1659..a7f08c69 100644 --- a/PyTorch/LanguageModeling/BERT/data/GLUEDownloader.py +++ b/PyTorch/LanguageModeling/BERT/data/GLUEDownloader.py @@ -36,7 +36,7 @@ class GLUEDownloader: assert task_name == 'sst-2' task_name = 'SST' wget.download( - 'https://gist.githubusercontent.com/W4ngatang/60c2bdb54d156a41194446737ce03e2e/raw/1502038877f6a88c225a34450793fbc3ea87eaba/download_glue_data.py', + 'https://gist.githubusercontent.com/roclark/9ab385e980c5bdb9e15ecad5963848e0/raw/c9dcc44a6e1336d2411e3333c25bcfd507c39c81/download_glue_data.py', out=self.save_path, ) sys.path.append(self.save_path)