Datasets:
Upload 13 files
Browse files- .gitattributes +4 -0
- minority_examples/train.anti_biased.jsonl +3 -0
- minority_examples/train.biased.jsonl +3 -0
- minority_examples/validation_matched.anti_biased.jsonl +0 -0
- minority_examples/validation_matched.biased.jsonl +0 -0
- minority_examples/validation_mismatched.anti_biased.jsonl +0 -0
- minority_examples/validation_mismatched.biased.jsonl +0 -0
- mnli.py +12 -12
- partial_input/train.anti_biased.jsonl +3 -0
- partial_input/train.biased.jsonl +3 -0
- partial_input/validation_matched.anti_biased.jsonl +0 -0
- partial_input/validation_matched.biased.jsonl +0 -0
- partial_input/validation_mismatched.anti_biased.jsonl +0 -0
- partial_input/validation_mismatched.biased.jsonl +0 -0
.gitattributes
CHANGED
@@ -57,3 +57,7 @@ minority_examples/train_anti-biased.jsonl filter=lfs diff=lfs merge=lfs -text
|
|
57 |
minority_examples/train_biased.jsonl filter=lfs diff=lfs merge=lfs -text
|
58 |
partial_input/train_anti-biased.jsonl filter=lfs diff=lfs merge=lfs -text
|
59 |
partial_input/train_biased.jsonl filter=lfs diff=lfs merge=lfs -text
|
|
|
|
|
|
|
|
|
|
57 |
minority_examples/train_biased.jsonl filter=lfs diff=lfs merge=lfs -text
|
58 |
partial_input/train_anti-biased.jsonl filter=lfs diff=lfs merge=lfs -text
|
59 |
partial_input/train_biased.jsonl filter=lfs diff=lfs merge=lfs -text
|
60 |
+
minority_examples/train.anti_biased.jsonl filter=lfs diff=lfs merge=lfs -text
|
61 |
+
minority_examples/train.biased.jsonl filter=lfs diff=lfs merge=lfs -text
|
62 |
+
partial_input/train.anti_biased.jsonl filter=lfs diff=lfs merge=lfs -text
|
63 |
+
partial_input/train.biased.jsonl filter=lfs diff=lfs merge=lfs -text
|
minority_examples/train.anti_biased.jsonl
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:964bf336d949d5314323e816f32886a4d9312eb1832a9a87c976f87fad747ef7
|
3 |
+
size 18923891
|
minority_examples/train.biased.jsonl
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:eeda5f9d3f1cefc1aef316473ae23647bb0d6ed74c3cf97401e475ec02c561dc
|
3 |
+
size 68973875
|
minority_examples/validation_matched.anti_biased.jsonl
ADDED
The diff for this file is too large to render.
See raw diff
|
|
minority_examples/validation_matched.biased.jsonl
ADDED
The diff for this file is too large to render.
See raw diff
|
|
minority_examples/validation_mismatched.anti_biased.jsonl
ADDED
The diff for this file is too large to render.
See raw diff
|
|
minority_examples/validation_mismatched.biased.jsonl
ADDED
The diff for this file is too large to render.
See raw diff
|
|
mnli.py
CHANGED
@@ -163,39 +163,39 @@ class Glue(datasets.GeneratorBasedBuilder):
|
|
163 |
def _split_generators(self, dl_manager):
|
164 |
return [
|
165 |
datasets.SplitGenerator(
|
166 |
-
name="
|
167 |
gen_kwargs={
|
168 |
-
"filepath": dl_manager.download(os.path.join(self.config.name, "
|
169 |
},
|
170 |
),
|
171 |
datasets.SplitGenerator(
|
172 |
-
name="
|
173 |
gen_kwargs={
|
174 |
-
"filepath": dl_manager.download(os.path.join(self.config.name, "
|
175 |
},
|
176 |
),
|
177 |
datasets.SplitGenerator(
|
178 |
-
name="
|
179 |
gen_kwargs={
|
180 |
-
"filepath": dl_manager.download(os.path.join(self.config.name, "
|
181 |
},
|
182 |
),
|
183 |
datasets.SplitGenerator(
|
184 |
-
name="
|
185 |
gen_kwargs={
|
186 |
-
"filepath": dl_manager.download(os.path.join(self.config.name, "
|
187 |
},
|
188 |
),
|
189 |
datasets.SplitGenerator(
|
190 |
-
name="
|
191 |
gen_kwargs={
|
192 |
-
"filepath": dl_manager.download(os.path.join(self.config.name, "
|
193 |
},
|
194 |
),
|
195 |
datasets.SplitGenerator(
|
196 |
-
name="
|
197 |
gen_kwargs={
|
198 |
-
"filepath": dl_manager.download(os.path.join(self.config.name, "
|
199 |
},
|
200 |
),
|
201 |
]
|
|
|
163 |
def _split_generators(self, dl_manager):
|
164 |
return [
|
165 |
datasets.SplitGenerator(
|
166 |
+
name="train.biased",
|
167 |
gen_kwargs={
|
168 |
+
"filepath": dl_manager.download(os.path.join(self.config.name, "train.biased.jsonl")),
|
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(
|
178 |
+
name="validation_matched.biased",
|
179 |
gen_kwargs={
|
180 |
+
"filepath": dl_manager.download(os.path.join(self.config.name, "validation_matched.biased.jsonl")),
|
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(
|
190 |
+
name="validation_mismatched.biased",
|
191 |
gen_kwargs={
|
192 |
+
"filepath": dl_manager.download(os.path.join(self.config.name, "validation_mismatched.biased.jsonl")),
|
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 |
]
|
partial_input/train.anti_biased.jsonl
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:ddfff7713ecb600b4ab5c0157112a88cc8ac56a87035e8bec3edc8502d54b48d
|
3 |
+
size 17890041
|
partial_input/train.biased.jsonl
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:229ee7ddc7e7a5b52c5996653ad5e29b7e6886b377166b593e8c756e9e17e3cb
|
3 |
+
size 70007725
|
partial_input/validation_matched.anti_biased.jsonl
ADDED
The diff for this file is too large to render.
See raw diff
|
|
partial_input/validation_matched.biased.jsonl
ADDED
The diff for this file is too large to render.
See raw diff
|
|
partial_input/validation_mismatched.anti_biased.jsonl
ADDED
The diff for this file is too large to render.
See raw diff
|
|
partial_input/validation_mismatched.biased.jsonl
ADDED
The diff for this file is too large to render.
See raw diff
|
|