Jackmin801 commited on
Commit
fb7fe43
1 Parent(s): 1952db6

reformat xnli to be similar to mnli

Browse files
README.md CHANGED
@@ -1,6 +1,30 @@
1
  ---
2
  license: apache-2.0
3
  configs:
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4
  - config_name: tydiqa
5
  data_files:
6
  - split: train
@@ -115,95 +139,350 @@ configs:
115
  - xnli/fr/test.parquet
116
  - xnli/ur/test.parquet
117
  - xnli/de/test.parquet
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
118
  - config_name: xnli.hi
119
  data_files:
120
  - split: validation
121
  path: xnli/hi/validation.parquet
122
  - split: test
123
  path: xnli/hi/test.parquet
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
124
  - config_name: xnli.zh
125
  data_files:
126
  - split: validation
127
  path: xnli/zh/validation.parquet
128
  - split: test
129
  path: xnli/zh/test.parquet
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
130
  - config_name: xnli.sw
131
  data_files:
132
  - split: validation
133
  path: xnli/sw/validation.parquet
134
  - split: test
135
  path: xnli/sw/test.parquet
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
136
  - config_name: xnli.tr
137
  data_files:
138
  - split: validation
139
  path: xnli/tr/validation.parquet
140
  - split: test
141
  path: xnli/tr/test.parquet
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
142
  - config_name: xnli.en
143
  data_files:
144
  - split: validation
145
  path: xnli/en/validation.parquet
146
  - split: test
147
  path: xnli/en/test.parquet
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
148
  - config_name: xnli.th
149
  data_files:
150
  - split: validation
151
  path: xnli/th/validation.parquet
152
  - split: test
153
  path: xnli/th/test.parquet
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
154
  - config_name: xnli.ru
155
  data_files:
156
  - split: validation
157
  path: xnli/ru/validation.parquet
158
  - split: test
159
  path: xnli/ru/test.parquet
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
160
  - config_name: xnli.ar
161
  data_files:
162
  - split: validation
163
  path: xnli/ar/validation.parquet
164
  - split: test
165
  path: xnli/ar/test.parquet
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
166
  - config_name: xnli.vi
167
  data_files:
168
  - split: validation
169
  path: xnli/vi/validation.parquet
170
  - split: test
171
  path: xnli/vi/test.parquet
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
172
  - config_name: xnli.bg
173
  data_files:
174
  - split: validation
175
  path: xnli/bg/validation.parquet
176
  - split: test
177
  path: xnli/bg/test.parquet
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
178
  - config_name: xnli.es
179
  data_files:
180
  - split: validation
181
  path: xnli/es/validation.parquet
182
  - split: test
183
  path: xnli/es/test.parquet
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
184
  - config_name: xnli.el
185
  data_files:
186
  - split: validation
187
  path: xnli/el/validation.parquet
188
  - split: test
189
  path: xnli/el/test.parquet
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
190
  - config_name: xnli.fr
191
  data_files:
192
  - split: validation
193
  path: xnli/fr/validation.parquet
194
  - split: test
195
  path: xnli/fr/test.parquet
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
196
  - config_name: xnli.ur
197
  data_files:
198
  - split: validation
199
  path: xnli/ur/validation.parquet
200
  - split: test
201
  path: xnli/ur/test.parquet
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
202
  - config_name: xnli.de
203
  data_files:
204
  - split: validation
205
  path: xnli/de/validation.parquet
206
  - split: test
207
  path: xnli/de/test.parquet
208
-
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
209
  ---
 
1
  ---
2
  license: apache-2.0
3
  configs:
4
+ - config_name: mnli
5
+ data_files:
6
+ - split: train
7
+ path:
8
+ - "mnli/train-0000.parquet"
9
+ - "mnli/train-0001.parquet"
10
+ - "mnli/train-0002.parquet"
11
+ - "mnli/train-0003.parquet"
12
+ features:
13
+ sentence1:
14
+ dtype: string
15
+ _type: Value
16
+ sentence2:
17
+ dtype: string
18
+ _type: Value
19
+ label:
20
+ names:
21
+ - entailment
22
+ - neutral
23
+ - contradiction
24
+ _type: ClassLabel
25
+ idx:
26
+ dtype: int32
27
+ _type: Value
28
  - config_name: tydiqa
29
  data_files:
30
  - split: train
 
139
  - xnli/fr/test.parquet
140
  - xnli/ur/test.parquet
141
  - xnli/de/test.parquet
142
+ features:
143
+ sentence1:
144
+ dtype: string
145
+ _type: Value
146
+ sentence2:
147
+ dtype: string
148
+ _type: Value
149
+ label:
150
+ names:
151
+ - entailment
152
+ - neutral
153
+ - contradiction
154
+ _type: ClassLabel
155
+ idx:
156
+ dtype: int32
157
+ _type: Value
158
  - config_name: xnli.hi
159
  data_files:
160
  - split: validation
161
  path: xnli/hi/validation.parquet
162
  - split: test
163
  path: xnli/hi/test.parquet
164
+ features:
165
+ sentence1:
166
+ dtype: string
167
+ _type: Value
168
+ sentence2:
169
+ dtype: string
170
+ _type: Value
171
+ label:
172
+ names:
173
+ - entailment
174
+ - neutral
175
+ - contradiction
176
+ _type: ClassLabel
177
+ idx:
178
+ dtype: int32
179
+ _type: Value
180
  - config_name: xnli.zh
181
  data_files:
182
  - split: validation
183
  path: xnli/zh/validation.parquet
184
  - split: test
185
  path: xnli/zh/test.parquet
186
+ features:
187
+ sentence1:
188
+ dtype: string
189
+ _type: Value
190
+ sentence2:
191
+ dtype: string
192
+ _type: Value
193
+ label:
194
+ names:
195
+ - entailment
196
+ - neutral
197
+ - contradiction
198
+ _type: ClassLabel
199
+ idx:
200
+ dtype: int32
201
+ _type: Value
202
  - config_name: xnli.sw
203
  data_files:
204
  - split: validation
205
  path: xnli/sw/validation.parquet
206
  - split: test
207
  path: xnli/sw/test.parquet
208
+ features:
209
+ sentence1:
210
+ dtype: string
211
+ _type: Value
212
+ sentence2:
213
+ dtype: string
214
+ _type: Value
215
+ label:
216
+ names:
217
+ - entailment
218
+ - neutral
219
+ - contradiction
220
+ _type: ClassLabel
221
+ idx:
222
+ dtype: int32
223
+ _type: Value
224
  - config_name: xnli.tr
225
  data_files:
226
  - split: validation
227
  path: xnli/tr/validation.parquet
228
  - split: test
229
  path: xnli/tr/test.parquet
230
+ features:
231
+ sentence1:
232
+ dtype: string
233
+ _type: Value
234
+ sentence2:
235
+ dtype: string
236
+ _type: Value
237
+ label:
238
+ names:
239
+ - entailment
240
+ - neutral
241
+ - contradiction
242
+ _type: ClassLabel
243
+ idx:
244
+ dtype: int32
245
+ _type: Value
246
  - config_name: xnli.en
247
  data_files:
248
  - split: validation
249
  path: xnli/en/validation.parquet
250
  - split: test
251
  path: xnli/en/test.parquet
252
+ features:
253
+ sentence1:
254
+ dtype: string
255
+ _type: Value
256
+ sentence2:
257
+ dtype: string
258
+ _type: Value
259
+ label:
260
+ names:
261
+ - entailment
262
+ - neutral
263
+ - contradiction
264
+ _type: ClassLabel
265
+ idx:
266
+ dtype: int32
267
+ _type: Value
268
  - config_name: xnli.th
269
  data_files:
270
  - split: validation
271
  path: xnli/th/validation.parquet
272
  - split: test
273
  path: xnli/th/test.parquet
274
+ features:
275
+ sentence1:
276
+ dtype: string
277
+ _type: Value
278
+ sentence2:
279
+ dtype: string
280
+ _type: Value
281
+ label:
282
+ names:
283
+ - entailment
284
+ - neutral
285
+ - contradiction
286
+ _type: ClassLabel
287
+ idx:
288
+ dtype: int32
289
+ _type: Value
290
  - config_name: xnli.ru
291
  data_files:
292
  - split: validation
293
  path: xnli/ru/validation.parquet
294
  - split: test
295
  path: xnli/ru/test.parquet
296
+ features:
297
+ sentence1:
298
+ dtype: string
299
+ _type: Value
300
+ sentence2:
301
+ dtype: string
302
+ _type: Value
303
+ label:
304
+ names:
305
+ - entailment
306
+ - neutral
307
+ - contradiction
308
+ _type: ClassLabel
309
+ idx:
310
+ dtype: int32
311
+ _type: Value
312
  - config_name: xnli.ar
313
  data_files:
314
  - split: validation
315
  path: xnli/ar/validation.parquet
316
  - split: test
317
  path: xnli/ar/test.parquet
318
+ features:
319
+ sentence1:
320
+ dtype: string
321
+ _type: Value
322
+ sentence2:
323
+ dtype: string
324
+ _type: Value
325
+ label:
326
+ names:
327
+ - entailment
328
+ - neutral
329
+ - contradiction
330
+ _type: ClassLabel
331
+ idx:
332
+ dtype: int32
333
+ _type: Value
334
  - config_name: xnli.vi
335
  data_files:
336
  - split: validation
337
  path: xnli/vi/validation.parquet
338
  - split: test
339
  path: xnli/vi/test.parquet
340
+ features:
341
+ sentence1:
342
+ dtype: string
343
+ _type: Value
344
+ sentence2:
345
+ dtype: string
346
+ _type: Value
347
+ label:
348
+ names:
349
+ - entailment
350
+ - neutral
351
+ - contradiction
352
+ _type: ClassLabel
353
+ idx:
354
+ dtype: int32
355
+ _type: Value
356
  - config_name: xnli.bg
357
  data_files:
358
  - split: validation
359
  path: xnli/bg/validation.parquet
360
  - split: test
361
  path: xnli/bg/test.parquet
362
+ features:
363
+ sentence1:
364
+ dtype: string
365
+ _type: Value
366
+ sentence2:
367
+ dtype: string
368
+ _type: Value
369
+ label:
370
+ names:
371
+ - entailment
372
+ - neutral
373
+ - contradiction
374
+ _type: ClassLabel
375
+ idx:
376
+ dtype: int32
377
+ _type: Value
378
  - config_name: xnli.es
379
  data_files:
380
  - split: validation
381
  path: xnli/es/validation.parquet
382
  - split: test
383
  path: xnli/es/test.parquet
384
+ features:
385
+ sentence1:
386
+ dtype: string
387
+ _type: Value
388
+ sentence2:
389
+ dtype: string
390
+ _type: Value
391
+ label:
392
+ names:
393
+ - entailment
394
+ - neutral
395
+ - contradiction
396
+ _type: ClassLabel
397
+ idx:
398
+ dtype: int32
399
+ _type: Value
400
  - config_name: xnli.el
401
  data_files:
402
  - split: validation
403
  path: xnli/el/validation.parquet
404
  - split: test
405
  path: xnli/el/test.parquet
406
+ features:
407
+ sentence1:
408
+ dtype: string
409
+ _type: Value
410
+ sentence2:
411
+ dtype: string
412
+ _type: Value
413
+ label:
414
+ names:
415
+ - entailment
416
+ - neutral
417
+ - contradiction
418
+ _type: ClassLabel
419
+ idx:
420
+ dtype: int32
421
+ _type: Value
422
  - config_name: xnli.fr
423
  data_files:
424
  - split: validation
425
  path: xnli/fr/validation.parquet
426
  - split: test
427
  path: xnli/fr/test.parquet
428
+ features:
429
+ sentence1:
430
+ dtype: string
431
+ _type: Value
432
+ sentence2:
433
+ dtype: string
434
+ _type: Value
435
+ label:
436
+ names:
437
+ - entailment
438
+ - neutral
439
+ - contradiction
440
+ _type: ClassLabel
441
+ idx:
442
+ dtype: int32
443
+ _type: Value
444
  - config_name: xnli.ur
445
  data_files:
446
  - split: validation
447
  path: xnli/ur/validation.parquet
448
  - split: test
449
  path: xnli/ur/test.parquet
450
+ features:
451
+ sentence1:
452
+ dtype: string
453
+ _type: Value
454
+ sentence2:
455
+ dtype: string
456
+ _type: Value
457
+ label:
458
+ names:
459
+ - entailment
460
+ - neutral
461
+ - contradiction
462
+ _type: ClassLabel
463
+ idx:
464
+ dtype: int32
465
+ _type: Value
466
  - config_name: xnli.de
467
  data_files:
468
  - split: validation
469
  path: xnli/de/validation.parquet
470
  - split: test
471
  path: xnli/de/test.parquet
472
+ features:
473
+ sentence1:
474
+ dtype: string
475
+ _type: Value
476
+ sentence2:
477
+ dtype: string
478
+ _type: Value
479
+ label:
480
+ names:
481
+ - entailment
482
+ - neutral
483
+ - contradiction
484
+ _type: ClassLabel
485
+ idx:
486
+ dtype: int32
487
+ _type: Value
488
  ---
xnli/ar/test.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:356be4f59900935df014ea600f8929e62b030a77520192cba79f0ab3107382c4
3
- size 393263
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3fca0a67196c2e7544b4bb86bbb4accc7da4cfe408d7766efb553f9eacad1301
3
+ size 420231
xnli/ar/validation.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:347e987b608df01ce4a4f00ff815c286e2dcf675aba0bd1e7047bc90a23eedf0
3
- size 194463
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:90eced16950dc9cf3e3915972649123a39381bd3c23c2591f44d92d41d37e116
3
+ size 207804
xnli/bg/test.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:4e4056e27292a836c3354117f5466f5222c019f1cfc0e882280d822b58b7b8fa
3
- size 448624
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f67248db138fe49b4e93e3a1a81c27a1dd878be08e37cca18e043cff31ed7df5
3
+ size 475592
xnli/bg/validation.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:999d1998eb918ca4fc4f2ac631969f1358f91de4f7323c00ed85850d3453187c
3
- size 224195
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:36ba52efaa738e22cc7a5f101afba18fe0ad8d11d4bb4a3f3598841ec2fcb824
3
+ size 237536
xnli/de/test.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:6e8a17199bf0babacae2c73885a569d939d6ddf8078f9ba2a56e33a621382378
3
- size 357415
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:886deed50895b94803ddeadd682ed0ab5d1f656e2eb30a3076bde49813aa35c1
3
+ size 384383
xnli/de/validation.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:a03f5a241e84dd67140ba8d18bb6ac48189c0f21ecc6eaa589dcdc92b0cc8814
3
- size 181696
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c5688b4e32ba5035b4f0ac97ce24ddae86420dd0d524a5ed3efcc511ec2c42b2
3
+ size 195037
xnli/el/test.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:fad49d57a42f2a26fdd4309eb3c8256c0d7eda6f93e6594055d4afd5fc8f220b
3
- size 490812
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:50a044987931fbb93c9d80bbeffe3663c0240c2d1ecc3a0976fb833f37ed6bd1
3
+ size 517780
xnli/el/validation.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:622736bee37633513f899d75a1d265885560020a48beb8057d26332befe01b4f
3
- size 247570
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f0bb4b8e1ccc77ccd1f5fec1d9523170c465194d9577b1e998efd3c337166dc9
3
+ size 260911
xnli/en/test.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:a85f87df124bc8e163ceda3baadd0c7ce9ba99cd513c819096222ceb579809db
3
- size 309520
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:5eea72583865ec27d6926dcbdc5f199fac65400b559fbd8dc0b388f2c56c39e1
3
+ size 336488
xnli/en/validation.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:98a05129826c8ec8b2ab5e13a7dc29ec60f29dd90e5f15efc06c69855886f2da
3
- size 157913
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:26825d800f4164d89ac3e7733348d3ffc0943150a8cfb10d4bfc9f94b58df19e
3
+ size 171254
xnli/es/test.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:f9ca2604ddd51d52bf04e90bfe14da5e74eb8182e872c2eb04b2dbb63f63c804
3
- size 343208
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:61eab308cf9ccd1718a626c2adfd4c8de65d07e0b41d143e0b176dee632371d9
3
+ size 370176
xnli/es/validation.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:667f7350006ec520a21d667d28f2c26ca5279c77bf3f488ecbb0e88e5d50ceae
3
- size 173799
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:7b8a0a3ed384738c51a445f2ef0348749de583377b166a7f7c764909c0e194f7
3
+ size 187140
xnli/fr/test.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:8a0ed4e2676ca247403f80af9738705bb88217f05e69fd576c4f0dafd670a5ba
3
- size 361516
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9fe62960afadd254f07bd0fb561dbb626621467264cfec29746d05c5a8cc93cd
3
+ size 388484
xnli/fr/validation.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:6ceed00f697fdf086f658182adc81dfc44f96351c143bf6ee3b727f46e373586
3
- size 184100
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c23f047fa26879320b927127f88f7305df4b1d33f3476eed68dd84e3948e77f5
3
+ size 197441
xnli/hi/test.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:e780ae10def7d14d2c08a090f55f210c73a79fdf02855ede1a123d7743c75125
3
- size 493908
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3db9b00cff047794a2b8eb4b0ad6c302350ccecdfa27cc41d77d17b8f0304f3a
3
+ size 520876
xnli/hi/validation.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:1a96f1de808cb90879e184be4fc6314ebecc86d0e6df7195e544c83af1e7aaa2
3
- size 249347
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8b186200eba0b7dfb902fab3036d8d9dd96370bbd6333de93ff23ed5ff2abde5
3
+ size 262688
xnli/ru/test.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:209eb8fab8dda7e27dd32b9ee1a8c2ab7fd608fed967ef549abd79fde1c0d904
3
- size 478635
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a901fff5ff60111aac182bd60ac1d9de79f1dae1118fc5f7045dbedc30bf4b2c
3
+ size 505603
xnli/ru/validation.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:1b210c98dd97db514972e12df9274a2ef6c0a9f5be29c171f1a50782f99fba6c
3
- size 239436
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4e0e9be3ed597eade053f79ca9ec2fa8eccc72081114fba8554836541d051683
3
+ size 252777
xnli/sw/test.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:92fb78eb286c115d0c19f6e15d92c928a87a91fafe3ed03f61d77688ec9d1b0f
3
- size 313538
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f0a46f912110eef624b0648172403057dc89d522c3191b9f2f676617593eaca9
3
+ size 340506
xnli/sw/validation.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:a8951811114ba208a9e742727f2e9c932a2d114b3147e9204fd32ad122e45585
3
- size 158777
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ab9c12ac59c0ce3b170e8057f212ac8e18e2de9545ef0ef232c3afc9b2c235ce
3
+ size 172118
xnli/th/test.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:a4fb9cd8e96ba4e71ad076b20323a47c3fb21ed89c1fc11a6bd8152df7c1bda2
3
- size 504685
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ad4092ebc8bc9b827dc356cfdb430514d45c7df0e07c268b714bdfa35605e678
3
+ size 531653
xnli/th/validation.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:aa0901d5b74e9665809850b782cc783a50e0edccb9ccf2666e10b62c41ff34ee
3
- size 252996
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9dad1ddf777c672cb26c573ccd976885b3229cdeef8f1c7831c418a66479f37b
3
+ size 266337
xnli/tr/test.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:164f83076cce9c02522f2456b78c002cd3298cd29d078c0dec368531e4d313a5
3
- size 339416
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3eec5d3e30af2b81802f0191f1c469a0c2da619c2c8fc0f0bbdeb77658c51edc
3
+ size 366384
xnli/tr/validation.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:8eb04d0400a8f2b55c2c384a7ea25e7f28ba159b83d38a543cb506a2bce17b95
3
- size 172465
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6edb8b9663e8498ada0a332b939364782b970afc08703f84aff20aa710c9e05e
3
+ size 185806
xnli/ur/test.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:7016e256a94f3cf46389fb1fa4a853e509772309fb3ddbd6c24abda4a0179a02
3
- size 429020
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:55d00773c1d91435289270dfe7f87975b227ccc7ba37b41637578582ea41af36
3
+ size 455988
xnli/ur/validation.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:fc24a1532b7d8337b68ba06909ac7accc8a2ab09da848b8268ee487e7e6dd1f8
3
- size 216842
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:335f73f4c852b9e21dd0f22a2fc05c7af8f44f1f45d01b09886f77862b35d229
3
+ size 230183
xnli/vi/test.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:f324fdcae4ce76dd10310b70642abecb3367066372633ac1b7e31ef9aac5f2bd
3
- size 365409
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6ffe9e9faa06b483d45dd1ce8ccfedbac37c15b8236c08418049fe23d60761b4
3
+ size 392377
xnli/vi/validation.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:9c806c59d7e659ba6c6c98969fc2eba74957d9a53b9d82bb2eb8589258a2a32c
3
- size 186591
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:88fff40dd000c677353629f6ee52062f2234b1048fe1e50d43a8cbe8b964fc12
3
+ size 199932
xnli/zh/test.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:edf83665fcfae64d37baf6e4425fd02e2014cc67b855a9d3567ace214e0c9a10
3
- size 310928
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:576521cd95799f6a40587a8f8d86e275bcd6763a1543865d0f4edbb484d58ff3
3
+ size 337896
xnli/zh/validation.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:766e6ff379fe7b207fec9ffdc06791f39174bebb47acb265aaa44585e85870c9
3
- size 158119
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:03a5f0ecf709eeab095e021efde1ea7df342f5fcb5567aafa42d0bbe00b3fd6e
3
+ size 171460