Datasets:
Librarian Bot: Add language metadata for dataset
Browse filesThis pull request aims to enrich the metadata of your dataset by adding language metadata to `YAML` block of your dataset card `README.md`.
How did we find this information?
- The librarian-bot downloaded a sample of rows from your dataset using the [dataset-server](https://huggingface.co/docs/datasets-server/) library
- The librarian-bot used a language detection model to predict the likely language of your dataset. This was done on columns likely to contain text data.
- Predictions for rows are aggregated by language and a filter is applied to remove languages which are very infrequently predicted
- A confidence threshold is applied to remove languages which are not confidently predicted
The following languages were detected with the following mean probabilities:
- English (en): 99.21%
If this PR is merged, the language metadata will be added to your dataset card. This will allow users to filter datasets by language on the [Hub](https://huggingface.co/datasets).
If the language metadata is incorrect, please feel free to close this PR.
To merge this PR, you can use the merge button below the PR:

This PR comes courtesy of [Librarian Bot](https://huggingface.co/librarian-bots). If you have any feedback, queries, or need assistance, please don't hesitate to reach out to
@davanstrien
.
|
@@ -1,37 +1,39 @@
|
|
| 1 |
---
|
|
|
|
|
|
|
| 2 |
configs:
|
| 3 |
-
|
| 4 |
-
|
| 5 |
-
|
| 6 |
-
|
| 7 |
-
|
| 8 |
-
|
| 9 |
-
|
| 10 |
-
|
| 11 |
-
|
| 12 |
-
|
| 13 |
-
|
| 14 |
-
|
| 15 |
-
|
| 16 |
-
|
| 17 |
-
|
| 18 |
-
|
| 19 |
-
|
| 20 |
-
|
| 21 |
-
|
| 22 |
-
|
| 23 |
-
|
| 24 |
-
|
| 25 |
-
|
| 26 |
-
|
| 27 |
-
|
| 28 |
-
|
| 29 |
-
|
| 30 |
-
|
| 31 |
-
|
| 32 |
-
|
| 33 |
-
|
| 34 |
-
|
| 35 |
---
|
| 36 |
|
| 37 |
# [FewGLUE](https://arxiv.org/abs/2009.07118)
|
|
|
|
| 1 |
---
|
| 2 |
+
language:
|
| 3 |
+
- en
|
| 4 |
configs:
|
| 5 |
+
- config_name: BoolQ_train
|
| 6 |
+
data_files: BoolQ/train.jsonl
|
| 7 |
+
- config_name: BoolQ_unlabeled
|
| 8 |
+
data_files: BoolQ/unlabeled.jsonl
|
| 9 |
+
- config_name: CB_train
|
| 10 |
+
data_files: CB/train.jsonl
|
| 11 |
+
- config_name: CB_unlabeled
|
| 12 |
+
data_files: CB/unlabeled.jsonl
|
| 13 |
+
- config_name: COPA_train
|
| 14 |
+
data_files: COPA/train.jsonl
|
| 15 |
+
- config_name: COPA_unlabeled
|
| 16 |
+
data_files: COPA/unlabeled.jsonl
|
| 17 |
+
- config_name: MultiRC_train
|
| 18 |
+
data_files: MultiRC/train.jsonl
|
| 19 |
+
- config_name: MultiRC_unlabeled
|
| 20 |
+
data_files: MultiRC/unlabeled.jsonl
|
| 21 |
+
- config_name: RTE_train
|
| 22 |
+
data_files: RTE/train.jsonl
|
| 23 |
+
- config_name: RTE_unlabeled
|
| 24 |
+
data_files: RTE/unlabeled.jsonl
|
| 25 |
+
- config_name: ReCoRD_train
|
| 26 |
+
data_files: ReCoRD/train.jsonl
|
| 27 |
+
- config_name: ReCoRD_unlabeled
|
| 28 |
+
data_files: ReCoRD/unlabeled.jsonl
|
| 29 |
+
- config_name: WSC_train
|
| 30 |
+
data_files: WSC/train.jsonl
|
| 31 |
+
- config_name: WSC_unlabeled
|
| 32 |
+
data_files: WSC/unlabeled.jsonl
|
| 33 |
+
- config_name: WiC_train
|
| 34 |
+
data_files: WiC/train.jsonl
|
| 35 |
+
- config_name: WiC_unlabeled
|
| 36 |
+
data_files: WiC/unlabeled.jsonl
|
| 37 |
---
|
| 38 |
|
| 39 |
# [FewGLUE](https://arxiv.org/abs/2009.07118)
|