Skip to content

Commit f02aea2

Browse files
authored
Rename glue to nyu-mll/glue (#29679)
* Update run_glue.py * Update run_glue.py * Update run_glue_no_trainer.py
1 parent 03847ef commit f02aea2

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

examples/pytorch/text-classification/run_glue.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -304,7 +304,7 @@ def main():
304304
if data_args.task_name is not None:
305305
# Downloading and loading a dataset from the hub.
306306
raw_datasets = load_dataset(
307-
"glue",
307+
"nyu-mll/glue",
308308
data_args.task_name,
309309
cache_dir=model_args.cache_dir,
310310
token=model_args.token,

examples/pytorch/text-classification/run_glue_no_trainer.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -281,7 +281,7 @@ def main():
281281
# download the dataset.
282282
if args.task_name is not None:
283283
# Downloading and loading a dataset from the hub.
284-
raw_datasets = load_dataset("glue", args.task_name)
284+
raw_datasets = load_dataset("nyu-mll/glue", args.task_name)
285285
else:
286286
# Loading the dataset from local csv or json file.
287287
data_files = {}

examples/tensorflow/text-classification/run_glue.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -265,7 +265,7 @@ def main():
265265
# Downloading and loading a dataset from the hub. In distributed training, the load_dataset function guarantee
266266
# that only one local process can concurrently download the dataset.
267267
datasets = load_dataset(
268-
"glue",
268+
"nyu-mll/glue",
269269
data_args.task_name,
270270
cache_dir=model_args.cache_dir,
271271
token=model_args.token,

0 commit comments

Comments
 (0)