Datasets:

Languages:
English
Size Categories:
100K<n<1M
ArXiv:
Tags:
License:
yuvalr commited on
Commit
39c51f6
1 Parent(s): 34ead2b

Upload mnli.py

Browse files
Files changed (1) hide show
  1. mnli.py +6 -6
mnli.py CHANGED
@@ -169,9 +169,9 @@ class Glue(datasets.GeneratorBasedBuilder):
169
  },
170
  ),
171
  datasets.SplitGenerator(
172
- name="train.anti-biased",
173
  gen_kwargs={
174
- "filepath": dl_manager.download(os.path.join(self.config.name, "train.anti-biased.jsonl")),
175
  },
176
  ),
177
  datasets.SplitGenerator(
@@ -181,9 +181,9 @@ class Glue(datasets.GeneratorBasedBuilder):
181
  },
182
  ),
183
  datasets.SplitGenerator(
184
- name="validation_matched.anti-biased",
185
  gen_kwargs={
186
- "filepath": dl_manager.download(os.path.join(self.config.name, "validation_matched.anti-biased.jsonl")),
187
  },
188
  ),
189
  datasets.SplitGenerator(
@@ -193,9 +193,9 @@ class Glue(datasets.GeneratorBasedBuilder):
193
  },
194
  ),
195
  datasets.SplitGenerator(
196
- name="validation_mismatched.anti-biased",
197
  gen_kwargs={
198
- "filepath": dl_manager.download(os.path.join(self.config.name, "validation_mismatched.anti-biased.jsonl")),
199
  },
200
  ),
201
  ]
 
169
  },
170
  ),
171
  datasets.SplitGenerator(
172
+ name="train.anti_biased",
173
  gen_kwargs={
174
+ "filepath": dl_manager.download(os.path.join(self.config.name, "train.anti_biased.jsonl")),
175
  },
176
  ),
177
  datasets.SplitGenerator(
 
181
  },
182
  ),
183
  datasets.SplitGenerator(
184
+ name="validation_matched.anti_biased",
185
  gen_kwargs={
186
+ "filepath": dl_manager.download(os.path.join(self.config.name, "validation_matched.anti_biased.jsonl")),
187
  },
188
  ),
189
  datasets.SplitGenerator(
 
193
  },
194
  ),
195
  datasets.SplitGenerator(
196
+ name="validation_mismatched.anti_biased",
197
  gen_kwargs={
198
+ "filepath": dl_manager.download(os.path.join(self.config.name, "validation_mismatched.anti_biased.jsonl")),
199
  },
200
  ),
201
  ]