FlyPig23 commited on
Commit
f63f3f0
·
verified ·
1 Parent(s): fcf1d1c

Upload batch 324 (20 files, last=huggingface_dataset/Dataset_Card/mbazaNLP_kinyarwanda-tts-dataset.md)

Browse files
Files changed (20) hide show
  1. huggingface_dataset/Dataset_Card/Biomedical-TeMU_SPACCC_Sentence-Splitter.md +107 -0
  2. huggingface_dataset/Dataset_Card/Datatang_Mandarin_Voiceprint_Recognition_Speech_Data_by_Mobile_Phone.md +127 -0
  3. huggingface_dataset/Dataset_Card/NeuralInternet_awesome-chattensor-prompts.md +15 -0
  4. huggingface_dataset/Dataset_Card/Pavithree_eli5.md +1 -0
  5. huggingface_dataset/Dataset_Card/Ruohao_pcmr.md +168 -0
  6. huggingface_dataset/Dataset_Card/aeslc.md +204 -0
  7. huggingface_dataset/Dataset_Card/autoevaluate_autoeval-eval-inverse-scaling__41-inverse-scaling__41-150015-1682059402.md +34 -0
  8. huggingface_dataset/Dataset_Card/autoevaluate_autoeval-staging-eval-emotion-default-34e541-17396354.md +33 -0
  9. huggingface_dataset/Dataset_Card/bigbio_iepa.md +46 -0
  10. huggingface_dataset/Dataset_Card/biglam_loc_beyond_words.md +198 -0
  11. huggingface_dataset/Dataset_Card/cahya_fleurs.md +310 -0
  12. huggingface_dataset/Dataset_Card/huggingnft_dooggies.md +175 -0
  13. huggingface_dataset/Dataset_Card/irds_mmarco_fr_dev.md +49 -0
  14. huggingface_dataset/Dataset_Card/irds_mr-tydi_ja_dev.md +55 -0
  15. huggingface_dataset/Dataset_Card/irds_wikiclir_zh.md +63 -0
  16. huggingface_dataset/Dataset_Card/koutch_refactory_program_repair.md +97 -0
  17. huggingface_dataset/Dataset_Card/lmqg_qag_tweetqa.md +71 -0
  18. huggingface_dataset/Dataset_Card/mbazaNLP_kinyarwanda-tts-dataset.md +29 -0
  19. huggingface_dataset/Dataset_Card/softcatala_Softcatala-Web-Texts-Dataset.md +105 -0
  20. huggingface_dataset/Dataset_Card/tti-bias_identities.md +142 -0
huggingface_dataset/Dataset_Card/Biomedical-TeMU_SPACCC_Sentence-Splitter.md ADDED
@@ -0,0 +1,107 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: cc-by-4.0
3
+ ---
4
+
5
+ # The Sentence Splitter (SS) for Clinical Cases Written in Spanish
6
+
7
+ ## Introduction
8
+ This repository contains the sentence splitting model trained using the SPACCC_SPLIT corpus (https://github.com/PlanTL-SANIDAD/SPACCC_SPLIT). The model was trained using the 90% of the corpus (900 clinical cases) and tested against the 10% (100 clinical cases). This model is a great resource to split sentences in biomedical documents, specially clinical cases written in Spanish. This model obtains a F-Measure of 98.75%.
9
+
10
+ This model was created using the Apache OpenNLP machine learning toolkit (https://opennlp.apache.org/), with the release number 1.8.4, released in December 2017.
11
+
12
+ This repository contains the model, training set, testing set, Gold Standard, executable file, and the source code.
13
+
14
+ ## Prerequisites
15
+ This software has been compiled with Java SE 1.8 and it should work with recent versions. You can download Java from the following website: https://www.java.com/en/download
16
+
17
+ The executable file already includes the Apache OpenNLP dependencies inside, so the download of this toolkit is not necessary. However, you may download the latest version from this website: https://opennlp.apache.org/download.html
18
+
19
+ The library file we have used to compile is "opennlp-tools-1.8.4.jar". The source code should be able to compile with the latest version of OpenNLP, "opennlp-tools-*RELEASE_NUMBER*.jar". In case there are compilation or execution errors, please let us know and we will make all the necessary updates.
20
+
21
+ ## Directory structure
22
+ <pre>
23
+ exec/
24
+ An executable file that can be used to apply the sentence splitter to your documents.
25
+ You can find the notes about its execution below in section "Usage".
26
+
27
+ gold_standard/
28
+ The clinical cases used as gold standard to evaluate the model's performance.
29
+
30
+ model/
31
+ The sentence splitting model, "es-sentence-splitter-model-spaccc.bin", a binary file.
32
+
33
+ src/
34
+ The source code to create the model (CreateModelSS.java) and evaluate it (EvaluateModelSS.java).
35
+ The directory includes an example about how to use the model inside your code (SentenceSplitter.java).
36
+ File "abbreviations.dat" contains a list of abbreviations, essential to build the model.
37
+
38
+ test_set/
39
+ The clinical cases used as test set to evaluate the model's performance.
40
+
41
+ train_set/
42
+ The clinical cases used to build the model. We use a single file with all documents present in
43
+ directory "train_set_docs" concatented.
44
+
45
+ train_set_docs/
46
+ The clinical cases used to build the model. For each record the sentences are already splitted.
47
+
48
+ </pre>
49
+
50
+ ## Usage
51
+ The executable file *SentenceSplitter.jar* is the program you need to split the sentences of the document. For this program, two arguments are needed: (1) the text file to split the sentences, and (2) the model file (*es-sentence-splitter-model-spaccc.bin*). The program will display all sentences splitted in the terminal, with one sentence per line.
52
+
53
+ From the `exec` folder, type the following command in your terminal:
54
+
55
+ <pre>
56
+ $ java -jar SentenceSplitter.jar INPUT_FILE MODEL_FILE
57
+ </pre>
58
+
59
+ ## Examples
60
+
61
+ Assuming you have the executable file, the input file and the model file in the same directory:
62
+ <pre>
63
+ $ java -jar SentenceSplitter.jar file_with_sentences_not_splitted.txt es-sentence-splitter-model-spaccc.bin
64
+ </pre>
65
+
66
+ ## Model creation
67
+ To create this sentence splitting model, we used the following training parameters (class *TrainingParameters* in OpenNLP) to get the best performance:
68
+ - Number of iterations: 4000.
69
+ - Cutoff parameter: 3.
70
+ - Trainer type parameter: *EventTrainer.EVENT_VALUE*.
71
+ - Algorithm: Maximum Entropy (*ModelType.MAXENT.name()*).
72
+
73
+ Meanwhile, we used the following parameters for the sentence split builder (class *SentenceDetectorFactory* in OpenNLP) to get the best performance:
74
+ - Subclass name: null value.
75
+ - Language code: *es* (for Spanish).
76
+ - Use token end: true.
77
+ - Abbreviation dictionary: file "abbreviations.dat" (included in the `src/` directory).
78
+ - End of file characters: ".", "?" and "!".
79
+
80
+ ## Model evaluation
81
+
82
+ After tuning the model using different values for each parameter mentioned above, we got the best performance with the values mentioned above.
83
+
84
+ | | Value |
85
+ | ----------------------------------------: | :------ |
86
+ | Number of sentences in the gold standard | 1445 |
87
+ | Number of sentences generated | 1447 |
88
+ | Number of sentences correctly splitted | 1428 |
89
+ | Number of sentences wrongly splitted | 12 |
90
+ | Number of sentences missed | 5 |
91
+ | **Precision** | **98.69%** |
92
+ | **Recall** | **98.82%** |
93
+ | **F-Measure** | **98.75%**|
94
+
95
+ Table 1: Evaluation statistics for the sentence splitting model.
96
+
97
+
98
+ ## Contact
99
+
100
+ Ander Intxaurrondo (ander.intxaurrondo@bsc.es)
101
+
102
+
103
+ ## License
104
+
105
+ <a rel="license" href="http://creativecommons.org/licenses/by/4.0/"><img alt="Creative Commons License" style="border-width:0" src="https://i.creativecommons.org/l/by/4.0/88x31.png" /></a><br />This work is licensed under a <a rel="license" href="http://creativecommons.org/licenses/by/4.0/">Creative Commons Attribution 4.0 International License</a>.
106
+
107
+ Copyright (c) 2018 Secretaría de Estado para el Avance Digital (SEAD)
huggingface_dataset/Dataset_Card/Datatang_Mandarin_Voiceprint_Recognition_Speech_Data_by_Mobile_Phone.md ADDED
@@ -0,0 +1,127 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ YAML tags:
3
+ - copy-paste the tags obtained with the tagging app: https://github.com/huggingface/datasets-tagging
4
+ ---
5
+
6
+ # Dataset Card for Datatang/Mandarin_Voiceprint_Recognition_Speech_Data_by_Mobile_Phone
7
+
8
+ ## Table of Contents
9
+ - [Table of Contents](#table-of-contents)
10
+ - [Dataset Description](#dataset-description)
11
+ - [Dataset Summary](#dataset-summary)
12
+ - [Supported Tasks and Leaderboards](#supported-tasks-and-leaderboards)
13
+ - [Languages](#languages)
14
+ - [Dataset Structure](#dataset-structure)
15
+ - [Data Instances](#data-instances)
16
+ - [Data Fields](#data-fields)
17
+ - [Data Splits](#data-splits)
18
+ - [Dataset Creation](#dataset-creation)
19
+ - [Curation Rationale](#curation-rationale)
20
+ - [Source Data](#source-data)
21
+ - [Annotations](#annotations)
22
+ - [Personal and Sensitive Information](#personal-and-sensitive-information)
23
+ - [Considerations for Using the Data](#considerations-for-using-the-data)
24
+ - [Social Impact of Dataset](#social-impact-of-dataset)
25
+ - [Discussion of Biases](#discussion-of-biases)
26
+ - [Other Known Limitations](#other-known-limitations)
27
+ - [Additional Information](#additional-information)
28
+ - [Dataset Curators](#dataset-curators)
29
+ - [Licensing Information](#licensing-information)
30
+ - [Citation Information](#citation-information)
31
+ - [Contributions](#contributions)
32
+
33
+ ## Dataset Description
34
+
35
+ - **Homepage:** https://bit.ly/3HG3YZd
36
+ - **Repository:**
37
+ - **Paper:**
38
+ - **Leaderboard:**
39
+ - **Point of Contact:**
40
+
41
+ ### Dataset Summary
42
+
43
+ Each person's time span is very long, which can better cover the sound features of a person in different periods and different states.
44
+
45
+ For more details, please refer to the link: https://bit.ly/3HG3YZd
46
+
47
+ ### Supported Tasks and Leaderboards
48
+
49
+ automatic-speech-recognition, audio-speaker-identification: The dataset can be used to train a model for Automatic Speech Recognition (ASR).
50
+
51
+ ### Languages
52
+
53
+ Chinese Mandarin
54
+ ## Dataset Structure
55
+
56
+ ### Data Instances
57
+
58
+ [More Information Needed]
59
+
60
+ ### Data Fields
61
+
62
+ [More Information Needed]
63
+
64
+ ### Data Splits
65
+
66
+ [More Information Needed]
67
+
68
+ ## Dataset Creation
69
+
70
+ ### Curation Rationale
71
+
72
+ [More Information Needed]
73
+
74
+ ### Source Data
75
+
76
+ #### Initial Data Collection and Normalization
77
+
78
+ [More Information Needed]
79
+
80
+ #### Who are the source language producers?
81
+
82
+ [More Information Needed]
83
+
84
+ ### Annotations
85
+
86
+ #### Annotation process
87
+
88
+ [More Information Needed]
89
+
90
+ #### Who are the annotators?
91
+
92
+ [More Information Needed]
93
+
94
+ ### Personal and Sensitive Information
95
+
96
+ [More Information Needed]
97
+
98
+ ## Considerations for Using the Data
99
+
100
+ ### Social Impact of Dataset
101
+
102
+ [More Information Needed]
103
+
104
+ ### Discussion of Biases
105
+
106
+ [More Information Needed]
107
+
108
+ ### Other Known Limitations
109
+
110
+ [More Information Needed]
111
+
112
+ ## Additional Information
113
+
114
+ ### Dataset Curators
115
+
116
+ [More Information Needed]
117
+
118
+ ### Licensing Information
119
+
120
+ Commerical License: https://drive.google.com/file/d/1saDCPm74D4UWfBL17VbkTsZLGfpOQj1J/view?usp=sharing
121
+
122
+ ### Citation Information
123
+
124
+ [More Information Needed]
125
+
126
+ ### Contributions
127
+
huggingface_dataset/Dataset_Card/NeuralInternet_awesome-chattensor-prompts.md ADDED
@@ -0,0 +1,15 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: cc0-1.0
3
+ tags:
4
+ - ChatGPT
5
+ - Chattensor
6
+ ---
7
+ <p align="center"><h1>🧠 Awesome Chaττensor Prompts [CSV dataset]</h1></p>
8
+
9
+ This is a Dataset Repository of **Awesome Chattensor Prompts**
10
+
11
+ **[View All Prompts on GitHub](https://github.com/neuralinternet/awesome-chattensor-prompts)**
12
+
13
+ # License
14
+
15
+ CC-0
huggingface_dataset/Dataset_Card/Pavithree_eli5.md ADDED
@@ -0,0 +1 @@
 
 
1
+ This dataset is the subset of original eli5 dataset available on hugging face
huggingface_dataset/Dataset_Card/Ruohao_pcmr.md ADDED
@@ -0,0 +1,168 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ language:
3
+ - en
4
+ paperswithcode_id: coqa
5
+ pretty_name: Conversational Question Answering Challenge
6
+ ---
7
+
8
+ # Dataset Card for "coqa"
9
+
10
+ ## Table of Contents
11
+ - [Dataset Description](#dataset-description)
12
+ - [Dataset Summary](#dataset-summary)
13
+ - [Supported Tasks and Leaderboards](#supported-tasks-and-leaderboards)
14
+ - [Languages](#languages)
15
+ - [Dataset Structure](#dataset-structure)
16
+ - [Data Instances](#data-instances)
17
+ - [Data Fields](#data-fields)
18
+ - [Data Splits](#data-splits)
19
+ - [Dataset Creation](#dataset-creation)
20
+ - [Curation Rationale](#curation-rationale)
21
+ - [Source Data](#source-data)
22
+ - [Annotations](#annotations)
23
+ - [Personal and Sensitive Information](#personal-and-sensitive-information)
24
+ - [Considerations for Using the Data](#considerations-for-using-the-data)
25
+ - [Social Impact of Dataset](#social-impact-of-dataset)
26
+ - [Discussion of Biases](#discussion-of-biases)
27
+ - [Other Known Limitations](#other-known-limitations)
28
+ - [Additional Information](#additional-information)
29
+ - [Dataset Curators](#dataset-curators)
30
+ - [Licensing Information](#licensing-information)
31
+ - [Citation Information](#citation-information)
32
+ - [Contributions](#contributions)
33
+
34
+ ## Dataset Description
35
+
36
+ - **Homepage:** [https://stanfordnlp.github.io/coqa/](https://stanfordnlp.github.io/coqa/)
37
+ - **Repository:** [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
38
+ - **Paper:** [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
39
+ - **Point of Contact:** [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
40
+ - **Size of downloaded dataset files:** 55.40 MB
41
+ - **Size of the generated dataset:** 18.35 MB
42
+ - **Total amount of disk used:** 73.75 MB
43
+
44
+ ### Dataset Summary
45
+
46
+ CoQA: A Conversational Question Answering Challenge
47
+
48
+ ### Supported Tasks and Leaderboards
49
+
50
+ [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
51
+
52
+ ### Languages
53
+
54
+ [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
55
+
56
+ ## Dataset Structure
57
+
58
+ ### Data Instances
59
+
60
+ #### default
61
+
62
+ - **Size of downloaded dataset files:** 55.40 MB
63
+ - **Size of the generated dataset:** 18.35 MB
64
+ - **Total amount of disk used:** 73.75 MB
65
+
66
+ An example of 'train' looks as follows.
67
+ ```
68
+ This example was too long and was cropped:
69
+
70
+ {
71
+ "answers": "{\"answer_end\": [179, 494, 511, 545, 879, 1127, 1128, 94, 150, 412, 1009, 1046, 643, -1, 764, 724, 125, 1384, 881, 910], \"answer_...",
72
+ "questions": "[\"When was the Vat formally opened?\", \"what is the library for?\", \"for what subjects?\", \"and?\", \"what was started in 2014?\", \"ho...",
73
+ "source": "wikipedia",
74
+ "story": "\"The Vatican Apostolic Library (), more commonly called the Vatican Library or simply the Vat, is the library of the Holy See, l..."
75
+ }
76
+ ```
77
+
78
+ ### Data Fields
79
+
80
+ The data fields are the same among all splits.
81
+
82
+ #### default
83
+ - `source`: a `string` feature.
84
+ - `story`: a `string` feature.
85
+ - `questions`: a `list` of `string` features.
86
+ - `answers`: a dictionary feature containing:
87
+ - `input_text`: a `string` feature.
88
+ - `answer_start`: a `int32` feature.
89
+ - `answer_end`: a `int32` feature.
90
+
91
+ ### Data Splits
92
+
93
+ | name |train|validation|
94
+ |-------|----:|---------:|
95
+ |default| 7199| 500|
96
+
97
+ ## Dataset Creation
98
+
99
+ ### Curation Rationale
100
+
101
+ [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
102
+
103
+ ### Source Data
104
+
105
+ #### Initial Data Collection and Normalization
106
+
107
+ [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
108
+
109
+ #### Who are the source language producers?
110
+
111
+ [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
112
+
113
+ ### Annotations
114
+
115
+ #### Annotation process
116
+
117
+ [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
118
+
119
+ #### Who are the annotators?
120
+
121
+ [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
122
+
123
+ ### Personal and Sensitive Information
124
+
125
+ [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
126
+
127
+ ## Considerations for Using the Data
128
+
129
+ ### Social Impact of Dataset
130
+
131
+ [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
132
+
133
+ ### Discussion of Biases
134
+
135
+ [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
136
+
137
+ ### Other Known Limitations
138
+
139
+ [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
140
+
141
+ ## Additional Information
142
+
143
+ ### Dataset Curators
144
+
145
+ [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
146
+
147
+ ### Licensing Information
148
+
149
+ [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
150
+
151
+ ### Citation Information
152
+
153
+ ```
154
+ @InProceedings{SivaAndAl:Coca,
155
+ author = {Siva, Reddy and Danqi, Chen and Christopher D., Manning},
156
+ title = {WikiQA: A Challenge Dataset for Open-Domain Question Answering},
157
+ journal = { arXiv},
158
+ year = {2018},
159
+
160
+ }
161
+
162
+ ```
163
+
164
+
165
+ ### Contributions
166
+
167
+ Thanks to [@patrickvonplaten](https://github.com/patrickvonplaten), [@lewtun](https://github.com/lewtun), [@thomwolf](https://github.com/thomwolf), [@mariamabarham](https://github.com/mariamabarham), [@ojasaar](https://github.com/ojasaar), [@lhoestq](https://github.com/lhoestq) for adding this dataset.
168
+
huggingface_dataset/Dataset_Card/aeslc.md ADDED
@@ -0,0 +1,204 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ annotations_creators:
3
+ - crowdsourced
4
+ language:
5
+ - en
6
+ language_creators:
7
+ - found
8
+ license:
9
+ - unknown
10
+ multilinguality:
11
+ - monolingual
12
+ pretty_name: 'AESLC: Annotated Enron Subject Line Corpus'
13
+ size_categories:
14
+ - 10K<n<100K
15
+ source_datasets:
16
+ - original
17
+ task_categories:
18
+ - summarization
19
+ task_ids: []
20
+ paperswithcode_id: aeslc
21
+ tags:
22
+ - aspect-based-summarization
23
+ - conversations-summarization
24
+ - multi-document-summarization
25
+ - email-headline-generation
26
+ dataset_info:
27
+ features:
28
+ - name: email_body
29
+ dtype: string
30
+ - name: subject_line
31
+ dtype: string
32
+ splits:
33
+ - name: train
34
+ num_bytes: 11902668
35
+ num_examples: 14436
36
+ - name: validation
37
+ num_bytes: 1660730
38
+ num_examples: 1960
39
+ - name: test
40
+ num_bytes: 1384177
41
+ num_examples: 1906
42
+ download_size: 11643743
43
+ dataset_size: 14947575
44
+ ---
45
+
46
+ # Dataset Card for "aeslc"
47
+
48
+ ## Table of Contents
49
+ - [Dataset Description](#dataset-description)
50
+ - [Dataset Summary](#dataset-summary)
51
+ - [Supported Tasks and Leaderboards](#supported-tasks-and-leaderboards)
52
+ - [Languages](#languages)
53
+ - [Dataset Structure](#dataset-structure)
54
+ - [Data Instances](#data-instances)
55
+ - [Data Fields](#data-fields)
56
+ - [Data Splits](#data-splits)
57
+ - [Dataset Creation](#dataset-creation)
58
+ - [Curation Rationale](#curation-rationale)
59
+ - [Source Data](#source-data)
60
+ - [Annotations](#annotations)
61
+ - [Personal and Sensitive Information](#personal-and-sensitive-information)
62
+ - [Considerations for Using the Data](#considerations-for-using-the-data)
63
+ - [Social Impact of Dataset](#social-impact-of-dataset)
64
+ - [Discussion of Biases](#discussion-of-biases)
65
+ - [Other Known Limitations](#other-known-limitations)
66
+ - [Additional Information](#additional-information)
67
+ - [Dataset Curators](#dataset-curators)
68
+ - [Licensing Information](#licensing-information)
69
+ - [Citation Information](#citation-information)
70
+ - [Contributions](#contributions)
71
+
72
+ ## Dataset Description
73
+
74
+ - **Homepage:**
75
+ - **Repository:** https://github.com/ryanzhumich/AESLC
76
+ - **Paper:** [This Email Could Save Your Life: Introducing the Task of Email Subject Line Generation](https://arxiv.org/abs/1906.03497)
77
+ - **Point of Contact:** [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
78
+ - **Size of downloaded dataset files:** 11.10 MB
79
+ - **Size of the generated dataset:** 14.26 MB
80
+ - **Total amount of disk used:** 25.36 MB
81
+
82
+ ### Dataset Summary
83
+
84
+ A collection of email messages of employees in the Enron Corporation.
85
+
86
+ There are two features:
87
+ - email_body: email body text.
88
+ - subject_line: email subject text.
89
+
90
+ ### Supported Tasks and Leaderboards
91
+
92
+ [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
93
+
94
+ ### Languages
95
+
96
+ Monolingual English (mainly en-US) with some exceptions.
97
+
98
+ ## Dataset Structure
99
+
100
+ ### Data Instances
101
+
102
+ #### default
103
+
104
+ - **Size of downloaded dataset files:** 11.10 MB
105
+ - **Size of the generated dataset:** 14.26 MB
106
+ - **Total amount of disk used:** 25.36 MB
107
+
108
+ An example of 'train' looks as follows.
109
+ ```
110
+ {
111
+ "email_body": "B/C\n<<some doc>>\n",
112
+ "subject_line": "Service Agreement"
113
+ }
114
+ ```
115
+
116
+ ### Data Fields
117
+
118
+ The data fields are the same among all splits.
119
+
120
+ #### default
121
+ - `email_body`: a `string` feature.
122
+ - `subject_line`: a `string` feature.
123
+
124
+ ### Data Splits
125
+
126
+ | name |train|validation|test|
127
+ |-------|----:|---------:|---:|
128
+ |default|14436| 1960|1906|
129
+
130
+ ## Dataset Creation
131
+
132
+ ### Curation Rationale
133
+
134
+ [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
135
+
136
+ ### Source Data
137
+
138
+ #### Initial Data Collection and Normalization
139
+
140
+ [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
141
+
142
+ #### Who are the source language producers?
143
+
144
+ [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
145
+
146
+ ### Annotations
147
+
148
+ #### Annotation process
149
+
150
+ [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
151
+
152
+ #### Who are the annotators?
153
+
154
+ [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
155
+
156
+ ### Personal and Sensitive Information
157
+
158
+ [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
159
+
160
+ ## Considerations for Using the Data
161
+
162
+ ### Social Impact of Dataset
163
+
164
+ [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
165
+
166
+ ### Discussion of Biases
167
+
168
+ [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
169
+
170
+ ### Other Known Limitations
171
+
172
+ [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
173
+
174
+ ## Additional Information
175
+
176
+ ### Dataset Curators
177
+
178
+ [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
179
+
180
+ ### Licensing Information
181
+
182
+ [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
183
+
184
+ ### Citation Information
185
+
186
+ ```
187
+ @inproceedings{zhang-tetreault-2019-email,
188
+ title = "This Email Could Save Your Life: Introducing the Task of Email Subject Line Generation",
189
+ author = "Zhang, Rui and
190
+ Tetreault, Joel",
191
+ booktitle = "Proceedings of the 57th Annual Meeting of the Association for Computational Linguistics",
192
+ month = jul,
193
+ year = "2019",
194
+ address = "Florence, Italy",
195
+ publisher = "Association for Computational Linguistics",
196
+ url = "https://aclanthology.org/P19-1043",
197
+ doi = "10.18653/v1/P19-1043",
198
+ pages = "446--456",
199
+ }
200
+ ```
201
+
202
+ ### Contributions
203
+
204
+ Thanks to [@patrickvonplaten](https://github.com/patrickvonplaten), [@thomwolf](https://github.com/thomwolf), [@lewtun](https://github.com/lewtun) for adding this dataset.
huggingface_dataset/Dataset_Card/autoevaluate_autoeval-eval-inverse-scaling__41-inverse-scaling__41-150015-1682059402.md ADDED
@@ -0,0 +1,34 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ type: predictions
3
+ tags:
4
+ - autotrain
5
+ - evaluation
6
+ datasets:
7
+ - inverse-scaling/41
8
+ eval_info:
9
+ task: text_zero_shot_classification
10
+ model: inverse-scaling/opt-66b_eval
11
+ metrics: []
12
+ dataset_name: inverse-scaling/41
13
+ dataset_config: inverse-scaling--41
14
+ dataset_split: train
15
+ col_mapping:
16
+ text: prompt
17
+ classes: classes
18
+ target: answer_index
19
+ ---
20
+ # Dataset Card for AutoTrain Evaluator
21
+
22
+ This repository contains model predictions generated by [AutoTrain](https://huggingface.co/autotrain) for the following task and dataset:
23
+
24
+ * Task: Zero-Shot Text Classification
25
+ * Model: inverse-scaling/opt-66b_eval
26
+ * Dataset: inverse-scaling/41
27
+ * Config: inverse-scaling--41
28
+ * Split: train
29
+
30
+ To run new evaluation jobs, visit Hugging Face's [automatic model evaluator](https://huggingface.co/spaces/autoevaluate/model-evaluator).
31
+
32
+ ## Contributions
33
+
34
+ Thanks to [@MicPie](https://huggingface.co/MicPie) for evaluating this model.
huggingface_dataset/Dataset_Card/autoevaluate_autoeval-staging-eval-emotion-default-34e541-17396354.md ADDED
@@ -0,0 +1,33 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ type: predictions
3
+ tags:
4
+ - autotrain
5
+ - evaluation
6
+ datasets:
7
+ - emotion
8
+ eval_info:
9
+ task: multi_class_classification
10
+ model: lewiswatson/distilbert-base-uncased-finetuned-emotion
11
+ metrics: []
12
+ dataset_name: emotion
13
+ dataset_config: default
14
+ dataset_split: test
15
+ col_mapping:
16
+ text: text
17
+ target: label
18
+ ---
19
+ # Dataset Card for AutoTrain Evaluator
20
+
21
+ This repository contains model predictions generated by [AutoTrain](https://huggingface.co/autotrain) for the following task and dataset:
22
+
23
+ * Task: Multi-class Text Classification
24
+ * Model: lewiswatson/distilbert-base-uncased-finetuned-emotion
25
+ * Dataset: emotion
26
+ * Config: default
27
+ * Split: test
28
+
29
+ To run new evaluation jobs, visit Hugging Face's [automatic model evaluator](https://huggingface.co/spaces/autoevaluate/model-evaluator).
30
+
31
+ ## Contributions
32
+
33
+ Thanks to [@lewtun](https://huggingface.co/lewtun) for evaluating this model.
huggingface_dataset/Dataset_Card/bigbio_iepa.md ADDED
@@ -0,0 +1,46 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+
2
+ ---
3
+ language:
4
+ - en
5
+ bigbio_language:
6
+ - English
7
+ license: unknown
8
+ multilinguality: monolingual
9
+ bigbio_license_shortname: UNKNOWN
10
+ pretty_name: IEPA
11
+ homepage: http://psb.stanford.edu/psb-online/proceedings/psb02/abstracts/p326.html
12
+ bigbio_pubmed: True
13
+ bigbio_public: True
14
+ bigbio_tasks:
15
+ - RELATION_EXTRACTION
16
+ ---
17
+
18
+
19
+ # Dataset Card for IEPA
20
+
21
+ ## Dataset Description
22
+
23
+ - **Homepage:** http://psb.stanford.edu/psb-online/proceedings/psb02/abstracts/p326.html
24
+ - **Pubmed:** True
25
+ - **Public:** True
26
+ - **Tasks:** RE
27
+
28
+
29
+ The IEPA benchmark PPI corpus is designed for relation extraction. It was created from 303 PubMed abstracts, each of which contains a specific pair of co-occurring chemicals.
30
+
31
+
32
+
33
+ ## Citation Information
34
+
35
+ ```
36
+ @ARTICLE{ding2001mining,
37
+ title = "Mining {MEDLINE}: abstracts, sentences, or phrases?",
38
+ author = "Ding, J and Berleant, D and Nettleton, D and Wurtele, E",
39
+ journal = "Pac Symp Biocomput",
40
+ pages = "326--337",
41
+ year = 2002,
42
+ address = "United States",
43
+ language = "en"
44
+ }
45
+
46
+ ```
huggingface_dataset/Dataset_Card/biglam_loc_beyond_words.md ADDED
@@ -0,0 +1,198 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ dataset_info:
3
+ features:
4
+ - name: image_id
5
+ dtype: int64
6
+ - name: image
7
+ dtype: image
8
+ - name: width
9
+ dtype: int32
10
+ - name: height
11
+ dtype: int32
12
+ - name: objects
13
+ sequence:
14
+ - name: bw_id
15
+ dtype: string
16
+ - name: category_id
17
+ dtype:
18
+ class_label:
19
+ names:
20
+ '0': Photograph
21
+ '1': Illustration
22
+ '2': Map
23
+ '3': Comics/Cartoon
24
+ '4': Editorial Cartoon
25
+ '5': Headline
26
+ '6': Advertisement
27
+ - name: image_id
28
+ dtype: string
29
+ - name: id
30
+ dtype: int64
31
+ - name: area
32
+ dtype: int64
33
+ - name: bbox
34
+ sequence: float32
35
+ length: 4
36
+ - name: iscrowd
37
+ dtype: bool
38
+ splits:
39
+ - name: train
40
+ num_bytes: 2854507
41
+ num_examples: 2846
42
+ - name: validation
43
+ num_bytes: 731782
44
+ num_examples: 712
45
+ download_size: 1200053819
46
+ dataset_size: 3586289
47
+ license: cc0-1.0
48
+ task_categories:
49
+ - object-detection
50
+ tags:
51
+ - lam
52
+ - newspapers
53
+ - document-layout
54
+ pretty_name: Beyond Words
55
+ size_categories:
56
+ - 1K<n<10K
57
+ ---
58
+
59
+ # Dataset Card for Beyond Words
60
+
61
+ ## Table of Contents
62
+ - [Table of Contents](#table-of-contents)
63
+ - [Dataset Description](#dataset-description)
64
+ - [Dataset Summary](#dataset-summary)
65
+ - [Supported Tasks and Leaderboards](#supported-tasks-and-leaderboards)
66
+ - [Languages](#languages)
67
+ - [Dataset Structure](#dataset-structure)
68
+ - [Data Instances](#data-instances)
69
+ - [Data Fields](#data-fields)
70
+ - [Data Splits](#data-splits)
71
+ - [Dataset Creation](#dataset-creation)
72
+ - [Curation Rationale](#curation-rationale)
73
+ - [Source Data](#source-data)
74
+ - [Annotations](#annotations)
75
+ - [Personal and Sensitive Information](#personal-and-sensitive-information)
76
+ - [Considerations for Using the Data](#considerations-for-using-the-data)
77
+ - [Social Impact of Dataset](#social-impact-of-dataset)
78
+ - [Discussion of Biases](#discussion-of-biases)
79
+ - [Other Known Limitations](#other-known-limitations)
80
+ - [Additional Information](#additional-information)
81
+ - [Dataset Curators](#dataset-curators)
82
+ - [Licensing Information](#licensing-information)
83
+ - [Citation Information](#citation-information)
84
+ - [Contributions](#contributions)
85
+
86
+ ## Dataset Description
87
+
88
+ - **Homepage:** https://labs.loc.gov/
89
+ - **Repository:** https://github.com/LibraryOfCongress/newspaper-navigator
90
+ - **Paper:** https://arxiv.org/abs/2005.01583
91
+ - **Leaderboard:**
92
+ - **Point of Contact:** LC-Labs@loc.gov
93
+
94
+ ### Dataset Summary
95
+
96
+ [More Information Needed]
97
+
98
+ ### Supported Tasks and Leaderboards
99
+
100
+ [More Information Needed]
101
+
102
+ ### Languages
103
+
104
+ [More Information Needed]
105
+
106
+ ## Dataset Structure
107
+
108
+ ### Data Instances
109
+
110
+ [More Information Needed]
111
+
112
+ ### Data Fields
113
+
114
+ [More Information Needed]
115
+
116
+ ### Data Splits
117
+
118
+ [More Information Needed]
119
+
120
+ ## Dataset Creation
121
+
122
+ ### Curation Rationale
123
+
124
+ [More Information Needed]
125
+
126
+ ### Source Data
127
+
128
+ #### Initial Data Collection and Normalization
129
+
130
+ [More Information Needed]
131
+
132
+ #### Who are the source language producers?
133
+
134
+ [More Information Needed]
135
+
136
+ ### Annotations
137
+
138
+ #### Annotation process
139
+
140
+ [More Information Needed]
141
+
142
+ #### Who are the annotators?
143
+
144
+ [More Information Needed]
145
+
146
+ ### Personal and Sensitive Information
147
+
148
+ [More Information Needed]
149
+
150
+ ## Considerations for Using the Data
151
+
152
+ ### Social Impact of Dataset
153
+
154
+ [More Information Needed]
155
+
156
+ ### Discussion of Biases
157
+
158
+ [More Information Needed]
159
+
160
+ ### Other Known Limitations
161
+
162
+ [More Information Needed]
163
+
164
+ ## Additional Information
165
+
166
+ ### Dataset Curators
167
+
168
+ [More Information Needed]
169
+
170
+ ### Licensing Information
171
+
172
+ [More Information Needed]
173
+
174
+ ### Citation Information
175
+
176
+ ```bibtex
177
+ @inproceedings{10.1145/3340531.3412767,
178
+ author = {Lee, Benjamin Charles Germain and Mears, Jaime and Jakeway, Eileen and Ferriter, Meghan and Adams, Chris and Yarasavage, Nathan and Thomas, Deborah and Zwaard, Kate and Weld, Daniel S.},
179
+ title = {The Newspaper Navigator Dataset: Extracting Headlines and Visual Content from 16 Million Historic Newspaper Pages in Chronicling America},
180
+ year = {2020},
181
+ isbn = {9781450368599},
182
+ publisher = {Association for Computing Machinery},
183
+ address = {New York, NY, USA},
184
+ url = {https://doi.org/10.1145/3340531.3412767},
185
+ doi = {10.1145/3340531.3412767},
186
+ abstract = {Chronicling America is a product of the National Digital Newspaper Program, a partnership between the Library of Congress and the National Endowment for the Humanities to digitize historic American newspapers. Over 16 million pages have been digitized to date, complete with high-resolution images and machine-readable METS/ALTO OCR. Of considerable interest to Chronicling America users is a semantified corpus, complete with extracted visual content and headlines. To accomplish this, we introduce a visual content recognition model trained on bounding box annotations collected as part of the Library of Congress's Beyond Words crowdsourcing initiative and augmented with additional annotations including those of headlines and advertisements. We describe our pipeline that utilizes this deep learning model to extract 7 classes of visual content: headlines, photographs, illustrations, maps, comics, editorial cartoons, and advertisements, complete with textual content such as captions derived from the METS/ALTO OCR, as well as image embeddings. We report the results of running the pipeline on 16.3 million pages from the Chronicling America corpus and describe the resulting Newspaper Navigator dataset, the largest dataset of extracted visual content from historic newspapers ever produced. The Newspaper Navigator dataset, finetuned visual content recognition model, and all source code are placed in the public domain for unrestricted re-use.},
187
+ booktitle = {Proceedings of the 29th ACM International Conference on Information &amp; Knowledge Management},
188
+ pages = {3055–3062},
189
+ numpages = {8},
190
+ keywords = {digital humanities, dataset, chronicling america, newspaper navigator, document analysis, information retrieval, digital libraries and archives, public domain, historic newspapers},
191
+ location = {Virtual Event, Ireland},
192
+ series = {CIKM '20}
193
+ }
194
+ ```
195
+
196
+ ### Contributions
197
+
198
+ Thanks to [@davanstrien](https://github.com/davanstrien) for adding this dataset.
huggingface_dataset/Dataset_Card/cahya_fleurs.md ADDED
@@ -0,0 +1,310 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ annotations_creators:
3
+ - expert-generated
4
+ - crowdsourced
5
+ - machine-generated
6
+ language_creators:
7
+ - crowdsourced
8
+ - expert-generated
9
+ language:
10
+ - afr
11
+ - amh
12
+ - ara
13
+ - asm
14
+ - ast
15
+ - azj
16
+ - bel
17
+ - ben
18
+ - bos
19
+ - cat
20
+ - ceb
21
+ - cmn
22
+ - ces
23
+ - cym
24
+ - dan
25
+ - deu
26
+ - ell
27
+ - eng
28
+ - spa
29
+ - est
30
+ - fas
31
+ - ful
32
+ - fin
33
+ - tgl
34
+ - fra
35
+ - gle
36
+ - glg
37
+ - guj
38
+ - hau
39
+ - heb
40
+ - hin
41
+ - hrv
42
+ - hun
43
+ - hye
44
+ - ind
45
+ - ibo
46
+ - isl
47
+ - ita
48
+ - jpn
49
+ - jav
50
+ - kat
51
+ - kam
52
+ - kea
53
+ - kaz
54
+ - khm
55
+ - kan
56
+ - kor
57
+ - ckb
58
+ - kir
59
+ - ltz
60
+ - lug
61
+ - lin
62
+ - lao
63
+ - lit
64
+ - luo
65
+ - lav
66
+ - mri
67
+ - mkd
68
+ - mal
69
+ - mon
70
+ - mar
71
+ - msa
72
+ - mlt
73
+ - mya
74
+ - nob
75
+ - npi
76
+ - nld
77
+ - nso
78
+ - nya
79
+ - oci
80
+ - orm
81
+ - ory
82
+ - pan
83
+ - pol
84
+ - pus
85
+ - por
86
+ - ron
87
+ - rus
88
+ - bul
89
+ - snd
90
+ - slk
91
+ - slv
92
+ - sna
93
+ - som
94
+ - srp
95
+ - swe
96
+ - swh
97
+ - tam
98
+ - tel
99
+ - tgk
100
+ - tha
101
+ - tur
102
+ - ukr
103
+ - umb
104
+ - urd
105
+ - uzb
106
+ - vie
107
+ - wol
108
+ - xho
109
+ - yor
110
+ - yue
111
+ - zul
112
+ license:
113
+ - cc-by-4.0
114
+ multilinguality:
115
+ - multilingual
116
+ size_categories:
117
+ - 10K<n<100K
118
+ task_categories:
119
+ - automatic-speech-recognition
120
+ task_ids: []
121
+ pretty_name: 'The Cross-lingual TRansfer Evaluation of Multilingual Encoders for Speech
122
+ (XTREME-S) benchmark is a benchmark designed to evaluate speech representations
123
+ across languages, tasks, domains and data regimes. It covers 102 languages from
124
+ 10+ language families, 3 different domains and 4 task families: speech recognition,
125
+ translation, classification and retrieval.'
126
+ tags:
127
+ - speech-recognition
128
+ ---
129
+
130
+ # FLEURS
131
+
132
+ ## Dataset Description
133
+
134
+ - **Fine-Tuning script:** [pytorch/speech-recognition](https://github.com/huggingface/transformers/tree/main/examples/pytorch/speech-recognition)
135
+ - **Paper:** [FLEURS: Few-shot Learning Evaluation of
136
+ Universal Representations of Speech](https://arxiv.org/abs/2205.12446)
137
+ - **Total amount of disk used:** ca. 350 GB
138
+
139
+ Fleurs is the speech version of the [FLoRes machine translation benchmark](https://arxiv.org/abs/2106.03193).
140
+ We use 2009 n-way parallel sentences from the FLoRes dev and devtest publicly available sets, in 102 languages.
141
+
142
+ Training sets have around 10 hours of supervision. Speakers of the train sets are different than speakers from the dev/test sets. Multilingual fine-tuning is
143
+ used and ”unit error rate” (characters, signs) of all languages is averaged. Languages and results are also grouped into seven geographical areas:
144
+
145
+ - **Western Europe**: *Asturian, Bosnian, Catalan, Croatian, Danish, Dutch, English, Finnish, French, Galician, German, Greek, Hungarian, Icelandic, Irish, Italian, Kabuverdianu, Luxembourgish, Maltese, Norwegian, Occitan, Portuguese, Spanish, Swedish, Welsh*
146
+ - **Eastern Europe**: *Armenian, Belarusian, Bulgarian, Czech, Estonian, Georgian, Latvian, Lithuanian, Macedonian, Polish, Romanian, Russian, Serbian, Slovak, Slovenian, Ukrainian*
147
+ - **Central-Asia/Middle-East/North-Africa**: *Arabic, Azerbaijani, Hebrew, Kazakh, Kyrgyz, Mongolian, Pashto, Persian, Sorani-Kurdish, Tajik, Turkish, Uzbek*
148
+ - **Sub-Saharan Africa**: *Afrikaans, Amharic, Fula, Ganda, Hausa, Igbo, Kamba, Lingala, Luo, Northern-Sotho, Nyanja, Oromo, Shona, Somali, Swahili, Umbundu, Wolof, Xhosa, Yoruba, Zulu*
149
+ - **South-Asia**: *Assamese, Bengali, Gujarati, Hindi, Kannada, Malayalam, Marathi, Nepali, Oriya, Punjabi, Sindhi, Tamil, Telugu, Urdu*
150
+ - **South-East Asia**: *Burmese, Cebuano, Filipino, Indonesian, Javanese, Khmer, Lao, Malay, Maori, Thai, Vietnamese*
151
+ - **CJK languages**: *Cantonese and Mandarin Chinese, Japanese, Korean*
152
+
153
+
154
+ ## Supported Tasks
155
+
156
+ ### 1. Speech Recognition (ASR)
157
+
158
+ ```py
159
+ from datasets import load_dataset
160
+
161
+ fleurs_asr = load_dataset("google/fleurs", "af_za") # for Afrikaans
162
+ # to download all data for multi-lingual fine-tuning uncomment following line
163
+ # fleurs_asr = load_dataset("google/fleurs", "all")
164
+
165
+ # see structure
166
+ print(fleurs_asr)
167
+
168
+ # load audio sample on the fly
169
+ audio_input = fleurs_asr["train"][0]["audio"] # first decoded audio sample
170
+ transcription = fleurs_asr["train"][0]["transcription"] # first transcription
171
+ # use `audio_input` and `transcription` to fine-tune your model for ASR
172
+
173
+ # for analyses see language groups
174
+ all_language_groups = fleurs_asr["train"].features["lang_group_id"].names
175
+ lang_group_id = fleurs_asr["train"][0]["lang_group_id"]
176
+
177
+ all_language_groups[lang_group_id]
178
+ ```
179
+
180
+ ### 2. Language Identification
181
+
182
+ LangID can often be a domain classification, but in the case of FLEURS-LangID, recordings are done in a similar setting across languages and the utterances correspond to n-way parallel sentences, in the exact same domain, making this task particularly relevant for evaluating LangID. The setting is simple, FLEURS-LangID is splitted in train/valid/test for each language. We simply create a single train/valid/test for LangID by merging all.
183
+
184
+ ```py
185
+ from datasets import load_dataset
186
+
187
+ fleurs_langID = load_dataset("google/fleurs", "all") # to download all data
188
+
189
+ # see structure
190
+ print(fleurs_langID)
191
+
192
+ # load audio sample on the fly
193
+ audio_input = fleurs_langID["train"][0]["audio"] # first decoded audio sample
194
+ language_class = fleurs_langID["train"][0]["lang_id"] # first id class
195
+ language = fleurs_langID["train"].features["lang_id"].names[language_class]
196
+
197
+ # use audio_input and language_class to fine-tune your model for audio classification
198
+ ```
199
+
200
+ ### 3. Retrieval
201
+
202
+ Retrieval provides n-way parallel speech and text data. Similar to how XTREME for text leverages Tatoeba to evaluate bitext mining a.k.a sentence translation retrieval, we use Retrieval to evaluate the quality of fixed-size representations of speech utterances. Our goal is to incentivize the creation of fixed-size speech encoder for speech retrieval. The system has to retrieve the English "key" utterance corresponding to the speech translation of "queries" in 15 languages. Results have to be reported on the test sets of Retrieval whose utterances are used as queries (and keys for English). We augment the English keys with a large number of utterances to make the task more difficult.
203
+
204
+ ```py
205
+ from datasets import load_dataset
206
+
207
+ fleurs_retrieval = load_dataset("google/fleurs", "af_za") # for Afrikaans
208
+ # to download all data for multi-lingual fine-tuning uncomment following line
209
+ # fleurs_retrieval = load_dataset("google/fleurs", "all")
210
+
211
+ # see structure
212
+ print(fleurs_retrieval)
213
+
214
+ # load audio sample on the fly
215
+ audio_input = fleurs_retrieval["train"][0]["audio"] # decoded audio sample
216
+ text_sample_pos = fleurs_retrieval["train"][0]["transcription"] # positive text sample
217
+ text_sample_neg = fleurs_retrieval["train"][1:20]["transcription"] # negative text samples
218
+
219
+ # use `audio_input`, `text_sample_pos`, and `text_sample_neg` to fine-tune your model for retrieval
220
+ ```
221
+
222
+ Users can leverage the training (and dev) sets of FLEURS-Retrieval with a ranking loss to build better cross-lingual fixed-size representations of speech.
223
+
224
+ ## Dataset Structure
225
+
226
+ We show detailed information the example configurations `af_za` of the dataset.
227
+ All other configurations have the same structure.
228
+
229
+ ### Data Instances
230
+
231
+ **af_za**
232
+ - Size of downloaded dataset files: 1.47 GB
233
+ - Size of the generated dataset: 1 MB
234
+ - Total amount of disk used: 1.47 GB
235
+
236
+ An example of a data instance of the config `af_za` looks as follows:
237
+
238
+ ```
239
+ {'id': 91,
240
+ 'num_samples': 385920,
241
+ 'path': '/home/patrick/.cache/huggingface/datasets/downloads/extracted/310a663d52322700b3d3473cbc5af429bd92a23f9bc683594e70bc31232db39e/home/vaxelrod/FLEURS/oss2_obfuscated/af_za/audio/train/17797742076841560615.wav',
242
+ 'audio': {'path': '/home/patrick/.cache/huggingface/datasets/downloads/extracted/310a663d52322700b3d3473cbc5af429bd92a23f9bc683594e70bc31232db39e/home/vaxelrod/FLEURS/oss2_obfuscated/af_za/audio/train/17797742076841560615.wav',
243
+ 'array': array([ 0.0000000e+00, 0.0000000e+00, 0.0000000e+00, ...,
244
+ -1.1205673e-04, -8.4638596e-05, -1.2731552e-04], dtype=float32),
245
+ 'sampling_rate': 16000},
246
+ 'raw_transcription': 'Dit is nog nie huidiglik bekend watter aantygings gemaak sal word of wat owerhede na die seun gelei het nie maar jeugmisdaad-verrigtinge het in die federale hof begin',
247
+ 'transcription': 'dit is nog nie huidiglik bekend watter aantygings gemaak sal word of wat owerhede na die seun gelei het nie maar jeugmisdaad-verrigtinge het in die federale hof begin',
248
+ 'gender': 0,
249
+ 'lang_id': 0,
250
+ 'language': 'Afrikaans',
251
+ 'lang_group_id': 3}
252
+ ```
253
+
254
+ ### Data Fields
255
+
256
+ The data fields are the same among all splits.
257
+ - **id** (int): ID of audio sample
258
+ - **num_samples** (int): Number of float values
259
+ - **path** (str): Path to the audio file
260
+ - **audio** (dict): Audio object including loaded audio array, sampling rate and path ot audio
261
+ - **raw_transcription** (str): The non-normalized transcription of the audio file
262
+ - **transcription** (str): Transcription of the audio file
263
+ - **gender** (int): Class id of gender
264
+ - **lang_id** (int): Class id of language
265
+ - **lang_group_id** (int): Class id of language group
266
+
267
+ ### Data Splits
268
+
269
+ Every config only has the `"train"` split containing of *ca.* 1000 examples, and a `"validation"` and `"test"` split each containing of *ca.* 400 examples.
270
+
271
+ ## Dataset Creation
272
+
273
+ We collect between one and three recordings for each sentence (2.3 on average), and buildnew train-dev-test splits with 1509, 150 and 350 sentences for
274
+ train, dev and test respectively.
275
+
276
+ ## Considerations for Using the Data
277
+
278
+ ### Social Impact of Dataset
279
+
280
+ This dataset is meant to encourage the development of speech technology in a lot more languages of the world. One of the goal is to give equal access to technologies like speech recognition or speech translation to everyone, meaning better dubbing or better access to content from the internet (like podcasts, streaming or videos).
281
+
282
+ ### Discussion of Biases
283
+
284
+ Most datasets have a fair distribution of gender utterances (e.g. the newly introduced FLEURS dataset). While many languages are covered from various regions of the world, the benchmark misses many languages that are all equally important. We believe technology built through FLEURS should generalize to all languages.
285
+
286
+ ### Other Known Limitations
287
+
288
+ The dataset has a particular focus on read-speech because common evaluation benchmarks like CoVoST-2 or LibriSpeech evaluate on this type of speech. There is sometimes a known mismatch between performance obtained in a read-speech setting and a more noisy setting (in production for instance). Given the big progress that remains to be made on many languages, we believe better performance on FLEURS should still correlate well with actual progress made for speech understanding.
289
+
290
+ ## Additional Information
291
+
292
+ All datasets are licensed under the [Creative Commons license (CC-BY)](https://creativecommons.org/licenses/).
293
+
294
+ ### Citation Information
295
+
296
+ You can access the FLEURS paper at https://arxiv.org/abs/2205.12446.
297
+ Please cite the paper when referencing the FLEURS corpus as:
298
+
299
+ ```
300
+ @article{fleurs2022arxiv,
301
+ title = {FLEURS: Few-shot Learning Evaluation of Universal Representations of Speech},
302
+ author = {Conneau, Alexis and Ma, Min and Khanuja, Simran and Zhang, Yu and Axelrod, Vera and Dalmia, Siddharth and Riesa, Jason and Rivera, Clara and Bapna, Ankur},
303
+ journal={arXiv preprint arXiv:2205.12446},
304
+ url = {https://arxiv.org/abs/2205.12446},
305
+ year = {2022},
306
+ ```
307
+
308
+ ### Contributions
309
+
310
+ Thanks to [@patrickvonplaten](https://github.com/patrickvonplaten) and [@aconneau](https://github.com/aconneau) for adding this dataset.
huggingface_dataset/Dataset_Card/huggingnft_dooggies.md ADDED
@@ -0,0 +1,175 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ tags:
3
+ - huggingnft
4
+ - nft
5
+ - huggan
6
+ - gan
7
+ - image
8
+ - images
9
+ task:
10
+ - unconditional-image-generation
11
+ datasets:
12
+ - huggingnft/dooggies
13
+ license: mit
14
+ ---
15
+
16
+ # Dataset Card
17
+
18
+ ## Disclaimer
19
+
20
+ All rights belong to their owners.
21
+ Models and datasets can be removed from the site at the request of the copyright holder.
22
+
23
+ ## Table of Contents
24
+ - [Dataset Description](#dataset-description)
25
+ - [Dataset Summary](#dataset-summary)
26
+ - [Supported Tasks and Leaderboards](#supported-tasks-and-leaderboards)
27
+ - [Languages](#languages)
28
+ - [How to use](#how-to-use)
29
+ - [Dataset Structure](#dataset-structure)
30
+ - [Data Fields](#data-fields)
31
+ - [Data Splits](#data-splits)
32
+ - [Dataset Creation](#dataset-creation)
33
+ - [Curation Rationale](#curation-rationale)
34
+ - [Source Data](#source-data)
35
+ - [Annotations](#annotations)
36
+ - [Personal and Sensitive Information](#personal-and-sensitive-information)
37
+ - [Considerations for Using the Data](#considerations-for-using-the-data)
38
+ - [Social Impact of Dataset](#social-impact-of-dataset)
39
+ - [Discussion of Biases](#discussion-of-biases)
40
+ - [Other Known Limitations](#other-known-limitations)
41
+ - [Additional Information](#additional-information)
42
+ - [Dataset Curators](#dataset-curators)
43
+ - [Licensing Information](#licensing-information)
44
+ - [Citation Information](#citation-information)
45
+ - [About](#about)
46
+
47
+ ## Dataset Description
48
+
49
+ - **Homepage:** [https://github.com/AlekseyKorshuk/huggingnft](https://github.com/AlekseyKorshuk/huggingnft)
50
+ - **Repository:** [https://github.com/AlekseyKorshuk/huggingnft](https://github.com/AlekseyKorshuk/huggingnft)
51
+ - **Paper:** [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
52
+ - **Point of Contact:** [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
53
+
54
+
55
+ ### Dataset Summary
56
+
57
+ NFT images dataset for unconditional generation.
58
+
59
+ NFT collection available [here](https://opensea.io/collection/dooggies).
60
+
61
+ Model is available [here](https://huggingface.co/huggingnft/dooggies).
62
+
63
+ Check Space: [link](https://huggingface.co/spaces/AlekseyKorshuk/huggingnft).
64
+
65
+ ### Supported Tasks and Leaderboards
66
+
67
+ [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
68
+
69
+
70
+ ## How to use
71
+
72
+ How to load this dataset directly with the datasets library:
73
+
74
+ ```python
75
+ from datasets import load_dataset
76
+
77
+ dataset = load_dataset("huggingnft/dooggies")
78
+ ```
79
+
80
+ ## Dataset Structure
81
+
82
+ [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
83
+
84
+
85
+ ### Data Fields
86
+
87
+ The data fields are the same among all splits.
88
+
89
+ - `image`: an `image` feature.
90
+ - `id`: an `int` feature.
91
+ - `token_metadata`: a `str` feature.
92
+ - `image_original_url`: a `str` feature.
93
+
94
+ ### Data Splits
95
+
96
+ [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
97
+
98
+
99
+ ## Dataset Creation
100
+
101
+ ### Curation Rationale
102
+
103
+ [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
104
+
105
+ ### Source Data
106
+
107
+ #### Initial Data Collection and Normalization
108
+
109
+ [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
110
+
111
+ #### Who are the source language producers?
112
+
113
+ [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
114
+
115
+ ### Annotations
116
+
117
+ #### Annotation process
118
+
119
+ [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
120
+
121
+ #### Who are the annotators?
122
+
123
+ [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
124
+
125
+ ### Personal and Sensitive Information
126
+
127
+ [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
128
+
129
+ ## Considerations for Using the Data
130
+
131
+ ### Social Impact of Dataset
132
+
133
+ [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
134
+
135
+ ### Discussion of Biases
136
+
137
+ [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
138
+
139
+ ### Other Known Limitations
140
+
141
+ [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
142
+
143
+ ## Additional Information
144
+
145
+ ### Dataset Curators
146
+
147
+ [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
148
+
149
+ ### Licensing Information
150
+
151
+ [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
152
+
153
+ ### Citation Information
154
+
155
+ ```
156
+ @InProceedings{huggingnft,
157
+ author={Aleksey Korshuk}
158
+ year=2022
159
+ }
160
+ ```
161
+
162
+
163
+ ## About
164
+
165
+ *Built by Aleksey Korshuk*
166
+
167
+ [![Follow](https://img.shields.io/github/followers/AlekseyKorshuk?style=social)](https://github.com/AlekseyKorshuk)
168
+
169
+ [![Follow](https://img.shields.io/twitter/follow/alekseykorshuk?style=social)](https://twitter.com/intent/follow?screen_name=alekseykorshuk)
170
+
171
+ [![Follow](https://img.shields.io/badge/dynamic/json?color=blue&label=Telegram%20Channel&query=%24.result&url=https%3A%2F%2Fapi.telegram.org%2Fbot1929545866%3AAAFGhV-KKnegEcLiyYJxsc4zV6C-bdPEBtQ%2FgetChatMemberCount%3Fchat_id%3D-1001253621662&style=social&logo=telegram)](https://t.me/joinchat/_CQ04KjcJ-4yZTky)
172
+
173
+ For more details, visit the project repository.
174
+
175
+ [![GitHub stars](https://img.shields.io/github/stars/AlekseyKorshuk/huggingnft?style=social)](https://github.com/AlekseyKorshuk/huggingnft)
huggingface_dataset/Dataset_Card/irds_mmarco_fr_dev.md ADDED
@@ -0,0 +1,49 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ pretty_name: '`mmarco/fr/dev`'
3
+ viewer: false
4
+ source_datasets: ['irds/mmarco_fr']
5
+ task_categories:
6
+ - text-retrieval
7
+ ---
8
+
9
+ # Dataset Card for `mmarco/fr/dev`
10
+
11
+ The `mmarco/fr/dev` dataset, provided by the [ir-datasets](https://ir-datasets.com/) package.
12
+ For more information about the dataset, see the [documentation](https://ir-datasets.com/mmarco#mmarco/fr/dev).
13
+
14
+ # Data
15
+
16
+ This dataset provides:
17
+ - `queries` (i.e., topics); count=101,093
18
+ - `qrels`: (relevance assessments); count=59,273
19
+
20
+ - For `docs`, use [`irds/mmarco_fr`](https://huggingface.co/datasets/irds/mmarco_fr)
21
+
22
+ ## Usage
23
+
24
+ ```python
25
+ from datasets import load_dataset
26
+
27
+ queries = load_dataset('irds/mmarco_fr_dev', 'queries')
28
+ for record in queries:
29
+ record # {'query_id': ..., 'text': ...}
30
+
31
+ qrels = load_dataset('irds/mmarco_fr_dev', 'qrels')
32
+ for record in qrels:
33
+ record # {'query_id': ..., 'doc_id': ..., 'relevance': ..., 'iteration': ...}
34
+
35
+ ```
36
+
37
+ Note that calling `load_dataset` will download the dataset (or provide access instructions when it's not public) and make a copy of the
38
+ data in 🤗 Dataset format.
39
+
40
+ ## Citation Information
41
+
42
+ ```
43
+ @article{Bonifacio2021MMarco,
44
+ title={{mMARCO}: A Multilingual Version of {MS MARCO} Passage Ranking Dataset},
45
+ author={Luiz Henrique Bonifacio and Israel Campiotti and Roberto Lotufo and Rodrigo Nogueira},
46
+ year={2021},
47
+ journal={arXiv:2108.13897}
48
+ }
49
+ ```
huggingface_dataset/Dataset_Card/irds_mr-tydi_ja_dev.md ADDED
@@ -0,0 +1,55 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ pretty_name: '`mr-tydi/ja/dev`'
3
+ viewer: false
4
+ source_datasets: ['irds/mr-tydi_ja']
5
+ task_categories:
6
+ - text-retrieval
7
+ ---
8
+
9
+ # Dataset Card for `mr-tydi/ja/dev`
10
+
11
+ The `mr-tydi/ja/dev` dataset, provided by the [ir-datasets](https://ir-datasets.com/) package.
12
+ For more information about the dataset, see the [documentation](https://ir-datasets.com/mr-tydi#mr-tydi/ja/dev).
13
+
14
+ # Data
15
+
16
+ This dataset provides:
17
+ - `queries` (i.e., topics); count=928
18
+ - `qrels`: (relevance assessments); count=928
19
+
20
+ - For `docs`, use [`irds/mr-tydi_ja`](https://huggingface.co/datasets/irds/mr-tydi_ja)
21
+
22
+ ## Usage
23
+
24
+ ```python
25
+ from datasets import load_dataset
26
+
27
+ queries = load_dataset('irds/mr-tydi_ja_dev', 'queries')
28
+ for record in queries:
29
+ record # {'query_id': ..., 'text': ...}
30
+
31
+ qrels = load_dataset('irds/mr-tydi_ja_dev', 'qrels')
32
+ for record in qrels:
33
+ record # {'query_id': ..., 'doc_id': ..., 'relevance': ..., 'iteration': ...}
34
+
35
+ ```
36
+
37
+ Note that calling `load_dataset` will download the dataset (or provide access instructions when it's not public) and make a copy of the
38
+ data in 🤗 Dataset format.
39
+
40
+ ## Citation Information
41
+
42
+ ```
43
+ @article{Zhang2021MrTyDi,
44
+ title={{Mr. TyDi}: A Multi-lingual Benchmark for Dense Retrieval},
45
+ author={Xinyu Zhang and Xueguang Ma and Peng Shi and Jimmy Lin},
46
+ year={2021},
47
+ journal={arXiv:2108.08787},
48
+ }
49
+ @article{Clark2020TyDiQa,
50
+ title={{TyDi QA}: A Benchmark for Information-Seeking Question Answering in Typologically Diverse Languages},
51
+ author={Jonathan H. Clark and Eunsol Choi and Michael Collins and Dan Garrette and Tom Kwiatkowski and Vitaly Nikolaev and Jennimaria Palomaki},
52
+ year={2020},
53
+ journal={Transactions of the Association for Computational Linguistics}
54
+ }
55
+ ```
huggingface_dataset/Dataset_Card/irds_wikiclir_zh.md ADDED
@@ -0,0 +1,63 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ pretty_name: '`wikiclir/zh`'
3
+ viewer: false
4
+ source_datasets: []
5
+ task_categories:
6
+ - text-retrieval
7
+ ---
8
+
9
+ # Dataset Card for `wikiclir/zh`
10
+
11
+ The `wikiclir/zh` dataset, provided by the [ir-datasets](https://ir-datasets.com/) package.
12
+ For more information about the dataset, see the [documentation](https://ir-datasets.com/wikiclir#wikiclir/zh).
13
+
14
+ # Data
15
+
16
+ This dataset provides:
17
+ - `docs` (documents, i.e., the corpus); count=951,480
18
+ - `queries` (i.e., topics); count=463,273
19
+ - `qrels`: (relevance assessments); count=926,130
20
+
21
+
22
+ ## Usage
23
+
24
+ ```python
25
+ from datasets import load_dataset
26
+
27
+ docs = load_dataset('irds/wikiclir_zh', 'docs')
28
+ for record in docs:
29
+ record # {'doc_id': ..., 'title': ..., 'text': ...}
30
+
31
+ queries = load_dataset('irds/wikiclir_zh', 'queries')
32
+ for record in queries:
33
+ record # {'query_id': ..., 'text': ...}
34
+
35
+ qrels = load_dataset('irds/wikiclir_zh', 'qrels')
36
+ for record in qrels:
37
+ record # {'query_id': ..., 'doc_id': ..., 'relevance': ..., 'iteration': ...}
38
+
39
+ ```
40
+
41
+ Note that calling `load_dataset` will download the dataset (or provide access instructions when it's not public) and make a copy of the
42
+ data in 🤗 Dataset format.
43
+
44
+ ## Citation Information
45
+
46
+ ```
47
+ @inproceedings{sasaki-etal-2018-cross,
48
+ title = "Cross-Lingual Learning-to-Rank with Shared Representations",
49
+ author = "Sasaki, Shota and
50
+ Sun, Shuo and
51
+ Schamoni, Shigehiko and
52
+ Duh, Kevin and
53
+ Inui, Kentaro",
54
+ booktitle = "Proceedings of the 2018 Conference of the North {A}merican Chapter of the Association for Computational Linguistics: Human Language Technologies, Volume 2 (Short Papers)",
55
+ month = jun,
56
+ year = "2018",
57
+ address = "New Orleans, Louisiana",
58
+ publisher = "Association for Computational Linguistics",
59
+ url = "https://aclanthology.org/N18-2073",
60
+ doi = "10.18653/v1/N18-2073",
61
+ pages = "458--463"
62
+ }
63
+ ```
huggingface_dataset/Dataset_Card/koutch_refactory_program_repair.md ADDED
@@ -0,0 +1,97 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ dataset_info:
3
+ features:
4
+ - name: submission_id
5
+ dtype: int64
6
+ - name: assignment_id
7
+ dtype: int64
8
+ - name: func_code
9
+ dtype: string
10
+ - name: func_name
11
+ dtype: string
12
+ - name: test
13
+ dtype: string
14
+ - name: description
15
+ dtype: string
16
+ - name: annotation
17
+ dtype: string
18
+ - name: comments
19
+ dtype: string
20
+ - name: __index_level_0__
21
+ dtype: float64
22
+ splits:
23
+ - name: train
24
+ num_bytes: 962
25
+ num_examples: 1
26
+ download_size: 0
27
+ dataset_size: 962
28
+ ---
29
+ # Dataset Card for "refactory_program_repair"
30
+
31
+ ## Dataset Description
32
+
33
+ - **Paper: coming soon**
34
+
35
+ ### Dataset Summary
36
+
37
+ The "refactory_program_repair" dataset is a subset of the [refactory_programming_data](https://huggingface.co/datasets/koutch/refactory_programming_data)
38
+ augmented with educators' annotations on the corrections to the buggy programs and comments on the reason for the solution not working.
39
+
40
+ ### Supported Tasks and Leaderboards
41
+
42
+ This dataset can be used for the task of program repair. In [Computing Education Research (CER)](https://faculty.washington.edu/ajko/cer/),
43
+ methods for automatically repairing student programs are used to provide students with feedback and help them debug their code.
44
+
45
+ ### Languages
46
+
47
+ The assignments were written in Python - English
48
+
49
+ ## Dataset Structure
50
+
51
+ ### Data Fields
52
+
53
+ * submission_id: a unique number identifying the submission
54
+ * func_code: the cleaned code submitted
55
+ * func_name: the name of the function that had to be implemented
56
+ * assingment_id: the unique (string) identifier of the assignment that had to be completed
57
+ * description: the assignment description
58
+ * test: a humaneval style string which can be used to execute the submitted solution on the provided test cases
59
+ * annotation: the annotators correction to buggy program
60
+ * comments: annotators' short comment on why the type of bug in the solution
61
+
62
+
63
+ ## Dataset Creation
64
+
65
+ ### Annotations
66
+
67
+ #### Annotation process
68
+
69
+ [More Information Needed]
70
+
71
+ #### Who are the annotators?
72
+
73
+ [More Information Needed]
74
+
75
+ ## Considerations for Using the Data
76
+
77
+ ### Social Impact of Dataset
78
+
79
+ [More Information Needed]
80
+
81
+ ### Discussion of Biases
82
+
83
+ [More Information Needed]
84
+
85
+ ### Other Known Limitations
86
+
87
+ [More Information Needed]
88
+
89
+ ## Additional Information
90
+
91
+ ### Dataset Curators
92
+
93
+ [More Information Needed]
94
+
95
+ ### Citation Information
96
+
97
+ [Coming soon]
huggingface_dataset/Dataset_Card/lmqg_qag_tweetqa.md ADDED
@@ -0,0 +1,71 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: cc-by-sa-4.0
3
+ pretty_name: TweetQA for question generation
4
+ language: en
5
+ multilinguality: monolingual
6
+ size_categories: 1k<n<10K
7
+ source_datasets: tweet_qa
8
+ task_categories:
9
+ - text-generation
10
+ task_ids:
11
+ - language-modeling
12
+ tags:
13
+ - question-generation
14
+ ---
15
+
16
+ # Dataset Card for "lmqg/qag_tweetqa"
17
+
18
+
19
+ ## Dataset Description
20
+ - **Repository:** [https://github.com/asahi417/lm-question-generation](https://github.com/asahi417/lm-question-generation)
21
+ - **Paper:** [https://arxiv.org/abs/2210.03992](https://arxiv.org/abs/2210.03992)
22
+ - **Point of Contact:** [Asahi Ushio](http://asahiushio.com/)
23
+
24
+ ### Dataset Summary
25
+ This is the question & answer generation dataset based on the [tweet_qa](https://huggingface.co/datasets/tweet_qa). The test set of the original data is not publicly released, so we randomly sampled test questions from the training set.
26
+
27
+ ### Supported Tasks and Leaderboards
28
+ * `question-answer-generation`: The dataset is assumed to be used to train a model for question & answer generation.
29
+ Success on this task is typically measured by achieving a high BLEU4/METEOR/ROUGE-L/BERTScore/MoverScore (see our paper for more in detail).
30
+
31
+ ### Languages
32
+ English (en)
33
+
34
+ ## Dataset Structure
35
+ An example of 'train' looks as follows.
36
+ ```
37
+ {
38
+ "paragraph": "I would hope that Phylicia Rashad would apologize now that @missjillscott has! You cannot discount 30 victims who come with similar stories.— JDWhitner (@JDWhitner) July 7, 2015",
39
+ "questions": [ "what should phylicia rashad do now?", "how many victims have come forward?" ],
40
+ "answers": [ "apologize", "30" ],
41
+ "questions_answers": "Q: what should phylicia rashad do now?, A: apologize Q: how many victims have come forward?, A: 30"
42
+ }
43
+ ```
44
+ The data fields are the same among all splits.
45
+ - `questions`: a `list` of `string` features.
46
+ - `answers`: a `list` of `string` features.
47
+ - `paragraph`: a `string` feature.
48
+ - `questions_answers`: a `string` feature.
49
+
50
+ ## Data Splits
51
+
52
+ |train|validation|test |
53
+ |----:|---------:|----:|
54
+ |4536 | 583| 583|
55
+
56
+
57
+ ## Citation Information
58
+
59
+ ```
60
+ @inproceedings{ushio-etal-2022-generative,
61
+ title = "{G}enerative {L}anguage {M}odels for {P}aragraph-{L}evel {Q}uestion {G}eneration",
62
+ author = "Ushio, Asahi and
63
+ Alva-Manchego, Fernando and
64
+ Camacho-Collados, Jose",
65
+ booktitle = "Proceedings of the 2022 Conference on Empirical Methods in Natural Language Processing",
66
+ month = dec,
67
+ year = "2022",
68
+ address = "Abu Dhabi, U.A.E.",
69
+ publisher = "Association for Computational Linguistics",
70
+ }
71
+ ```
huggingface_dataset/Dataset_Card/mbazaNLP_kinyarwanda-tts-dataset.md ADDED
@@ -0,0 +1,29 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ language:
3
+ - rw
4
+ language_creators:
5
+ - "Digital Umuganda"
6
+ license:
7
+ - cc-by-4.0
8
+ size_categories:
9
+ - 3K<n<4K
10
+ - ~6hours
11
+ ---
12
+ # Kinyarwanda TTS dataset
13
+
14
+ The dataset consists of 3992 clips of Kinyarwanda TTS corpus recorded in a studio using a voice actress, it was collected in the mbaza project
15
+
16
+ ## Data structure
17
+ ```
18
+ Audio: 3992 Single voice studio recordings by a voice actress
19
+ Text: CSV with audio name and corresponding written text
20
+ ```
21
+
22
+ ## Language
23
+ The corresponding dataset is in the Kinyarwanda Language
24
+
25
+ ## Dataset Creation
26
+ - Text collected had to include Kinyarwanda syllabes, which is made by a combination of a consonant or a group of consonats (e.g. Nyw) and a vowel.
27
+ - Text were reviewed by a linguist to ensure the text fit kinyarwanda standards
28
+ - The voice were recorded in a studio albeit in a semi-professional settings (i.e. some of the audio contains reverbs)
29
+
huggingface_dataset/Dataset_Card/softcatala_Softcatala-Web-Texts-Dataset.md ADDED
@@ -0,0 +1,105 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ annotations_creators:
3
+ - no-annotation
4
+ language_creators:
5
+ - expert-generated
6
+ language:
7
+ - 'ca'
8
+ license:
9
+ - cc-by-sa-4.0
10
+ - cc0-1.0
11
+ multilinguality:
12
+ - monolingual
13
+ pretty_name: Softcatalà website content.
14
+ size_categories:
15
+ - "100K<n<1M"
16
+ source_datasets:
17
+ - original
18
+ task_categories:
19
+ - text-generation
20
+ task_ids:
21
+ - language-modeling
22
+ ---
23
+ # Dataset Card for Tilde-MODEL-Catalan
24
+ ## Table of Contents
25
+ - [Table of Contents](#table-of-contents)
26
+ - [Dataset Description](#dataset-description)
27
+ - [Dataset Summary](#dataset-summary)
28
+ - [Supported Tasks and Leaderboards](#supported-tasks-and-leaderboards)
29
+ - [Languages](#languages)
30
+ - [Dataset Structure](#dataset-structure)
31
+ - [Data Instances](#data-instances)
32
+ - [Data Fields](#data-fields)
33
+ - [Data Splits](#data-splits)
34
+ - [Dataset Creation](#dataset-creation)
35
+ - [Curation Rationale](#curation-rationale)
36
+ - [Source Data](#source-data)
37
+ - [Annotations](#annotations)
38
+ - [Personal and Sensitive Information](#personal-and-sensitive-information)
39
+ - [Considerations for Using the Data](#considerations-for-using-the-data)
40
+ - [Social Impact of Dataset](#social-impact-of-dataset)
41
+ - [Discussion of Biases](#discussion-of-biases)
42
+ - [Other Known Limitations](#other-known-limitations)
43
+ - [Additional Information](#additional-information)
44
+ - [Dataset Curators](#dataset-curators)
45
+ - [Licensing Information](#licensing-information)
46
+ - [Citation Information](#citation-information)
47
+ - [Contributions](#contributions)
48
+ ## Dataset Description
49
+ - **Homepage:** https://www.softcatala.org/
50
+ - **Repository:** https://github.com/Softcatala/softcatala-web-dataset
51
+ - **Paper:**
52
+ - **Leaderboard:**
53
+ - **Point of Contact:**
54
+ ### Dataset Summary
55
+ This repository contains Sofcatalà web site content (articles and programs descriptions).
56
+
57
+ Dataset size:
58
+ * articles.json contains 623 articles with 373233 words.
59
+ * programes.json contains 330 program descriptions with 49868 words.
60
+
61
+ The license of the data is Attribution-ShareAlike 4.0 International (CC BY-SA 4.0).
62
+ ### Supported Tasks and Leaderboards
63
+
64
+ ### Languages
65
+ Catalan (`ca`).
66
+ ## Dataset Structure
67
+ ### Data Instances
68
+ [More Information Needed]
69
+ ### Data Fields
70
+ JSON (name/value pairs) format with the following fields: content, date, id and title.
71
+ ### Data Splits
72
+ One file for the descriptions text and one for the articles text.
73
+ ## Dataset Creation
74
+ ### Curation Rationale
75
+ [More Information Needed]
76
+ ### Source Data
77
+ #### Initial Data Collection and Normalization
78
+ [More Information Needed]
79
+ #### Who are the source language producers?
80
+ Softcatalà community.
81
+ ### Annotations
82
+ #### Annotation process
83
+ [More Information Needed]
84
+ #### Who are the annotators?
85
+ [More Information Needed]
86
+ ### Personal and Sensitive Information
87
+ [More Information Needed]
88
+ ## Considerations for Using the Data
89
+ ### Social Impact of Dataset
90
+ [More Information Needed]
91
+ ### Discussion of Biases
92
+ [More Information Needed]
93
+ ### Other Known Limitations
94
+ [More Information Needed]
95
+ ## Additional Information
96
+ ### Dataset Curators
97
+ [@softcatala](https://github.com/Softcatala)
98
+ [@jordimas](https://github.com/jordimas)
99
+ ### Licensing Information
100
+ [CC BY-SA 4.0](https://creativecommons.org/licenses/by-sa/4.0/).
101
+ [CC0-1.0](https://creativecommons.org/share-your-work/public-domain/cc0/).
102
+ ### Citation Information
103
+ [More Information Needed]
104
+ ### Contributions
105
+ [More Information Needed]
huggingface_dataset/Dataset_Card/tti-bias_identities.md ADDED
@@ -0,0 +1,142 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: cc-by-sa-4.0
3
+ dataset_info:
4
+ features:
5
+ - name: ethnicity
6
+ dtype: string
7
+ - name: gender
8
+ dtype: string
9
+ - name: 'no'
10
+ dtype: int32
11
+ - name: image_path
12
+ dtype: string
13
+ - name: image
14
+ dtype: image
15
+ - name: model
16
+ dtype: string
17
+ splits:
18
+ - name: train
19
+ num_bytes: 585336673.0
20
+ num_examples: 2040
21
+ download_size: 465986042
22
+ dataset_size: 585336673.0
23
+ ---
24
+
25
+ # Dataset Card for [Dataset Name]
26
+
27
+ ## Table of Contents
28
+ - [Table of Contents](#table-of-contents)
29
+ - [Dataset Description](#dataset-description)
30
+ - [Dataset Summary](#dataset-summary)
31
+ - [Supported Tasks and Leaderboards](#supported-tasks-and-leaderboards)
32
+ - [Languages](#languages)
33
+ - [Dataset Structure](#dataset-structure)
34
+ - [Data Instances](#data-instances)
35
+ - [Data Fields](#data-fields)
36
+ - [Data Splits](#data-splits)
37
+ - [Dataset Creation](#dataset-creation)
38
+ - [Curation Rationale](#curation-rationale)
39
+ - [Source Data](#source-data)
40
+ - [Annotations](#annotations)
41
+ - [Personal and Sensitive Information](#personal-and-sensitive-information)
42
+ - [Considerations for Using the Data](#considerations-for-using-the-data)
43
+ - [Social Impact of Dataset](#social-impact-of-dataset)
44
+ - [Discussion of Biases](#discussion-of-biases)
45
+ - [Other Known Limitations](#other-known-limitations)
46
+ - [Additional Information](#additional-information)
47
+ - [Dataset Curators](#dataset-curators)
48
+ - [Licensing Information](#licensing-information)
49
+ - [Citation Information](#citation-information)
50
+ - [Contributions](#contributions)
51
+
52
+ ## Dataset Description
53
+
54
+ - **Homepage:**
55
+ - **Repository:**
56
+ - **Paper:**
57
+ - **Leaderboard:**
58
+ - **Point of Contact:**
59
+
60
+ ### Dataset Summary
61
+
62
+ [More Information Needed]
63
+
64
+ ### Supported Tasks and Leaderboards
65
+
66
+ [More Information Needed]
67
+
68
+ ### Languages
69
+
70
+ [More Information Needed]
71
+
72
+ ## Dataset Structure
73
+
74
+ ### Data Instances
75
+
76
+ [More Information Needed]
77
+
78
+ ### Data Fields
79
+
80
+ [More Information Needed]
81
+
82
+ ### Data Splits
83
+
84
+ [More Information Needed]
85
+
86
+ ## Dataset Creation
87
+
88
+ ### Curation Rationale
89
+
90
+ [More Information Needed]
91
+
92
+ ### Source Data
93
+
94
+ #### Initial Data Collection and Normalization
95
+
96
+ [More Information Needed]
97
+
98
+ #### Who are the source language producers?
99
+
100
+ [More Information Needed]
101
+
102
+ ### Annotations
103
+
104
+ #### Annotation process
105
+
106
+ [More Information Needed]
107
+
108
+ #### Who are the annotators?
109
+
110
+ [More Information Needed]
111
+
112
+ ### Personal and Sensitive Information
113
+
114
+ [More Information Needed]
115
+
116
+ ## Considerations for Using the Data
117
+
118
+ ### Social Impact of Dataset
119
+
120
+ [More Information Needed]
121
+
122
+ ### Discussion of Biases
123
+
124
+ [More Information Needed]
125
+
126
+ ### Other Known Limitations
127
+
128
+ [More Information Needed]
129
+
130
+ ## Additional Information
131
+
132
+ ### Dataset Curators
133
+
134
+ [More Information Needed]
135
+
136
+ ### Licensing Information
137
+
138
+ [More Information Needed]
139
+
140
+ ### Citation Information
141
+
142
+ [More Information Needed]