FlyPig23 commited on
Commit
f22efef
·
verified ·
1 Parent(s): 7445dc3

Upload batch 81 (20 files, last=huggingface_dataset/Dataset_Card/autoevaluate_autoeval-staging-eval-project-c76b0e96-8395129.md)

Browse files
Files changed (20) hide show
  1. huggingface_dataset/Dataset_Card/Cohere_miracl-te-corpus-22-12.md +152 -0
  2. huggingface_dataset/Dataset_Card/NicholasSynovic_bert-autotrain-1.md +56 -0
  3. huggingface_dataset/Dataset_Card/adorkin_extended_tweet_emojis.md +110 -0
  4. huggingface_dataset/Dataset_Card/allenai_multixscience_dense_max.md +45 -0
  5. huggingface_dataset/Dataset_Card/anukaver_EstQA.md +24 -0
  6. huggingface_dataset/Dataset_Card/autoevaluate_autoeval-eval-emotion-default-2feb36-1456053837.md +33 -0
  7. huggingface_dataset/Dataset_Card/autoevaluate_autoeval-staging-eval-project-c76b0e96-8395129.md +31 -0
  8. huggingface_dataset/Dataset_Card/autoevaluate_autoeval-staging-eval-project-squad_v2-96a02c9c-11975602.md +35 -0
  9. huggingface_dataset/Dataset_Card/emrecan_stsb-mt-turkish.md +21 -0
  10. huggingface_dataset/Dataset_Card/fake_news_filipino.md +176 -0
  11. huggingface_dataset/Dataset_Card/huggingartists_the-weeknd.md +188 -0
  12. huggingface_dataset/Dataset_Card/huggingartists_v-x-v-prince.md +204 -0
  13. huggingface_dataset/Dataset_Card/income_cqadupstack-mathematica-top-20-gen-queries.md +510 -0
  14. huggingface_dataset/Dataset_Card/its5Q_yandex-q.md +75 -0
  15. huggingface_dataset/Dataset_Card/lewtun_github-issues.md +161 -0
  16. huggingface_dataset/Dataset_Card/malteos_test-ds.md +139 -0
  17. huggingface_dataset/Dataset_Card/opus_elhuyar.md +159 -0
  18. huggingface_dataset/Dataset_Card/projecte-aina_UD_Catalan-AnCora.md +176 -0
  19. huggingface_dataset/Dataset_Card/shahules786_PoetryFoundationData.md +28 -0
  20. huggingface_dataset/Dataset_Card/wmt17.md +360 -0
huggingface_dataset/Dataset_Card/Cohere_miracl-te-corpus-22-12.md ADDED
@@ -0,0 +1,152 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ annotations_creators:
3
+ - expert-generated
4
+
5
+ language:
6
+ - te
7
+
8
+ multilinguality:
9
+ - multilingual
10
+
11
+ size_categories: []
12
+ source_datasets: []
13
+ tags: []
14
+
15
+ task_categories:
16
+ - text-retrieval
17
+
18
+ license:
19
+ - apache-2.0
20
+
21
+ task_ids:
22
+ - document-retrieval
23
+ ---
24
+
25
+ # MIRACL (te) embedded with cohere.ai `multilingual-22-12` encoder
26
+
27
+ We encoded the [MIRACL dataset](https://huggingface.co/miracl) using the [cohere.ai](https://txt.cohere.ai/multilingual/) `multilingual-22-12` embedding model.
28
+
29
+ The query embeddings can be found in [Cohere/miracl-te-queries-22-12](https://huggingface.co/datasets/Cohere/miracl-te-queries-22-12) and the corpus embeddings can be found in [Cohere/miracl-te-corpus-22-12](https://huggingface.co/datasets/Cohere/miracl-te-corpus-22-12).
30
+
31
+ For the orginal datasets, see [miracl/miracl](https://huggingface.co/datasets/miracl/miracl) and [miracl/miracl-corpus](https://huggingface.co/datasets/miracl/miracl-corpus).
32
+
33
+
34
+ Dataset info:
35
+ > MIRACL 🌍🙌🌏 (Multilingual Information Retrieval Across a Continuum of Languages) is a multilingual retrieval dataset that focuses on search across 18 different languages, which collectively encompass over three billion native speakers around the world.
36
+ >
37
+ > The corpus for each language is prepared from a Wikipedia dump, where we keep only the plain text and discard images, tables, etc. Each article is segmented into multiple passages using WikiExtractor based on natural discourse units (e.g., `\n\n` in the wiki markup). Each of these passages comprises a "document" or unit of retrieval. We preserve the Wikipedia article title of each passage.
38
+
39
+ ## Embeddings
40
+ We compute for `title+" "+text` the embeddings using our `multilingual-22-12` embedding model, a state-of-the-art model that works for semantic search in 100 languages. If you want to learn more about this model, have a look at [cohere.ai multilingual embedding model](https://txt.cohere.ai/multilingual/).
41
+
42
+
43
+ ## Loading the dataset
44
+
45
+ In [miracl-te-corpus-22-12](https://huggingface.co/datasets/Cohere/miracl-te-corpus-22-12) we provide the corpus embeddings. Note, depending on the selected split, the respective files can be quite large.
46
+
47
+ You can either load the dataset like this:
48
+ ```python
49
+ from datasets import load_dataset
50
+ docs = load_dataset(f"Cohere/miracl-te-corpus-22-12", split="train")
51
+ ```
52
+
53
+ Or you can also stream it without downloading it before:
54
+ ```python
55
+ from datasets import load_dataset
56
+ docs = load_dataset(f"Cohere/miracl-te-corpus-22-12", split="train", streaming=True)
57
+
58
+ for doc in docs:
59
+ docid = doc['docid']
60
+ title = doc['title']
61
+ text = doc['text']
62
+ emb = doc['emb']
63
+ ```
64
+
65
+ ## Search
66
+
67
+ Have a look at [miracl-te-queries-22-12](https://huggingface.co/datasets/Cohere/miracl-te-queries-22-12) where we provide the query embeddings for the MIRACL dataset.
68
+
69
+ To search in the documents, you must use **dot-product**.
70
+
71
+
72
+ And then compare this query embeddings either with a vector database (recommended) or directly computing the dot product.
73
+
74
+ A full search example:
75
+ ```python
76
+ # Attention! For large datasets, this requires a lot of memory to store
77
+ # all document embeddings and to compute the dot product scores.
78
+ # Only use this for smaller datasets. For large datasets, use a vector DB
79
+
80
+ from datasets import load_dataset
81
+ import torch
82
+
83
+ #Load documents + embeddings
84
+ docs = load_dataset(f"Cohere/miracl-te-corpus-22-12", split="train")
85
+ doc_embeddings = torch.tensor(docs['emb'])
86
+
87
+ # Load queries
88
+ queries = load_dataset(f"Cohere/miracl-te-queries-22-12", split="dev")
89
+
90
+ # Select the first query as example
91
+ qid = 0
92
+ query = queries[qid]
93
+ query_embedding = torch.tensor(queries['emb'])
94
+
95
+ # Compute dot score between query embedding and document embeddings
96
+ dot_scores = torch.mm(query_embedding, doc_embeddings.transpose(0, 1))
97
+ top_k = torch.topk(dot_scores, k=3)
98
+
99
+ # Print results
100
+ print("Query:", query['query'])
101
+ for doc_id in top_k.indices[0].tolist():
102
+ print(docs[doc_id]['title'])
103
+ print(docs[doc_id]['text'])
104
+ ```
105
+
106
+ You can get embeddings for new queries using our API:
107
+ ```python
108
+ #Run: pip install cohere
109
+ import cohere
110
+ co = cohere.Client(f"{api_key}") # You should add your cohere API Key here :))
111
+ texts = ['my search query']
112
+ response = co.embed(texts=texts, model='multilingual-22-12')
113
+ query_embedding = response.embeddings[0] # Get the embedding for the first text
114
+ ```
115
+
116
+ ## Performance
117
+
118
+ In the following table we compare the cohere multilingual-22-12 model with Elasticsearch version 8.6.0 lexical search (title and passage indexed as independent fields). Note that Elasticsearch doesn't support all languages that are part of the MIRACL dataset.
119
+
120
+
121
+ We compute nDCG@10 (a ranking based loss), as well as hit@3: Is at least one relevant document in the top-3 results. We find that hit@3 is easier to interpret, as it presents the number of queries for which a relevant document is found among the top-3 results.
122
+
123
+ Note: MIRACL only annotated a small fraction of passages (10 per query) for relevancy. Especially for larger Wikipedias (like English), we often found many more relevant passages. This is know as annotation holes. Real nDCG@10 and hit@3 performance is likely higher than depicted.
124
+
125
+
126
+ | Model | cohere multilingual-22-12 nDCG@10 | cohere multilingual-22-12 hit@3 | ES 8.6.0 nDCG@10 | ES 8.6.0 acc@3 |
127
+ |---|---|---|---|---|
128
+ | miracl-ar | 64.2 | 75.2 | 46.8 | 56.2 |
129
+ | miracl-bn | 61.5 | 75.7 | 49.2 | 60.1 |
130
+ | miracl-de | 44.4 | 60.7 | 19.6 | 29.8 |
131
+ | miracl-en | 44.6 | 62.2 | 30.2 | 43.2 |
132
+ | miracl-es | 47.0 | 74.1 | 27.0 | 47.2 |
133
+ | miracl-fi | 63.7 | 76.2 | 51.4 | 61.6 |
134
+ | miracl-fr | 46.8 | 57.1 | 17.0 | 21.6 |
135
+ | miracl-hi | 50.7 | 62.9 | 41.0 | 48.9 |
136
+ | miracl-id | 44.8 | 63.8 | 39.2 | 54.7 |
137
+ | miracl-ru | 49.2 | 66.9 | 25.4 | 36.7 |
138
+ | **Avg** | 51.7 | 67.5 | 34.7 | 46.0 |
139
+
140
+ Further languages (not supported by Elasticsearch):
141
+ | Model | cohere multilingual-22-12 nDCG@10 | cohere multilingual-22-12 hit@3 |
142
+ |---|---|---|
143
+ | miracl-fa | 44.8 | 53.6 |
144
+ | miracl-ja | 49.0 | 61.0 |
145
+ | miracl-ko | 50.9 | 64.8 |
146
+ | miracl-sw | 61.4 | 74.5 |
147
+ | miracl-te | 67.8 | 72.3 |
148
+ | miracl-th | 60.2 | 71.9 |
149
+ | miracl-yo | 56.4 | 62.2 |
150
+ | miracl-zh | 43.8 | 56.5 |
151
+ | **Avg** | 54.3 | 64.6 |
152
+
huggingface_dataset/Dataset_Card/NicholasSynovic_bert-autotrain-1.md ADDED
@@ -0,0 +1,56 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ task_categories:
3
+ - text-classification
4
+
5
+ ---
6
+ # AutoTrain Dataset for project: test
7
+
8
+ ## Dataset Description
9
+
10
+ This dataset has been automatically processed by AutoTrain for project test.
11
+
12
+ ### Languages
13
+
14
+ The BCP-47 code for the dataset's language is unk.
15
+
16
+ ## Dataset Structure
17
+
18
+ ### Data Instances
19
+
20
+ A sample from this dataset looks as follows:
21
+
22
+ ```json
23
+ [
24
+ {
25
+ "feat_textID": "500d5b1751",
26
+ "text": "Almost time to say Good Bye to my twimulations. I`ll miss my tweeps",
27
+ "target": 0
28
+ },
29
+ {
30
+ "feat_textID": "05832fb2c4",
31
+ "text": "did you kno that is amazing and i`ve known him since he got twitter and his most tweeted words are `know` `haha` `****`..",
32
+ "target": 1
33
+ }
34
+ ]
35
+ ```
36
+
37
+ ### Dataset Fields
38
+
39
+ The dataset has the following fields (also called "features"):
40
+
41
+ ```json
42
+ {
43
+ "feat_textID": "Value(dtype='string', id=None)",
44
+ "text": "Value(dtype='string', id=None)",
45
+ "target": "ClassLabel(num_classes=2, names=['negative', 'positive'], id=None)"
46
+ }
47
+ ```
48
+
49
+ ### Dataset Splits
50
+
51
+ This dataset is split into a train and validation split. The split sizes are as follow:
52
+
53
+ | Split name | Num samples |
54
+ | ------------ | ------------------- |
55
+ | train | 2229 |
56
+ | valid | 558 |
huggingface_dataset/Dataset_Card/adorkin_extended_tweet_emojis.md ADDED
@@ -0,0 +1,110 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ task_categories:
3
+ - text-classification
4
+ language:
5
+ - en
6
+ size_categories:
7
+ - 10K<n<100K
8
+ ---
9
+ # Dataset Card for Dataset Name
10
+
11
+ ## Dataset Description
12
+
13
+ - **Homepage:**
14
+ - **Repository:**
15
+ - **Paper:**
16
+ - **Leaderboard:**
17
+ - **Point of Contact:**
18
+
19
+ ### Dataset Summary
20
+
21
+ This dataset is comprised of `emoji` and `emotion` subsets of [tweet_eval](https://huggingface.co/datasets/tweet_eval). The motivation
22
+ is that the original `emoji` subset essentially contains only positive/neutral emojis, while `emotion` subset contains a varied array
23
+ of emotions. So, the idea was to replace emotion labels with corresponding emojis (sad, angry) in the `emotion` subset and mix it together
24
+ with the `emoji` subset.
25
+
26
+ ### Supported Tasks and Leaderboards
27
+
28
+ Similar to tweet eval the expected usage is text classification.
29
+
30
+ ### Languages
31
+
32
+ Only English is present in the dataset.
33
+
34
+ ## Dataset Structure
35
+
36
+ ### Data Instances
37
+
38
+ [More Information Needed]
39
+
40
+ ### Data Fields
41
+
42
+ [More Information Needed]
43
+
44
+ ### Data Splits
45
+
46
+ [More Information Needed]
47
+
48
+ ## Dataset Creation
49
+
50
+ ### Curation Rationale
51
+
52
+ [More Information Needed]
53
+
54
+ ### Source Data
55
+
56
+ #### Initial Data Collection and Normalization
57
+
58
+ [More Information Needed]
59
+
60
+ #### Who are the source language producers?
61
+
62
+ [More Information Needed]
63
+
64
+ ### Annotations
65
+
66
+ Refer to [tweet_eval](https://huggingface.co/datasets/tweet_eval). No additional data was added.
67
+
68
+ #### Annotation process
69
+
70
+ Same as tweet eval.
71
+
72
+ #### Who are the annotators?
73
+
74
+ Same as tweet eval.
75
+
76
+ ### Personal and Sensitive Information
77
+
78
+ Same as tweet eval.
79
+
80
+ ## Considerations for Using the Data
81
+
82
+ ### Social Impact of Dataset
83
+
84
+ [More Information Needed]
85
+
86
+ ### Discussion of Biases
87
+
88
+ [More Information Needed]
89
+
90
+ ### Other Known Limitations
91
+
92
+ [More Information Needed]
93
+
94
+ ## Additional Information
95
+
96
+ ### Dataset Curators
97
+
98
+ [More Information Needed]
99
+
100
+ ### Licensing Information
101
+
102
+ [More Information Needed]
103
+
104
+ ### Citation Information
105
+
106
+ [More Information Needed]
107
+
108
+ ### Contributions
109
+
110
+ [More Information Needed]
huggingface_dataset/Dataset_Card/allenai_multixscience_dense_max.md ADDED
@@ -0,0 +1,45 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ annotations_creators:
3
+ - found
4
+ language_creators:
5
+ - found
6
+ language:
7
+ - en
8
+ license:
9
+ - unknown
10
+ multilinguality:
11
+ - monolingual
12
+ size_categories:
13
+ - 10K<n<100K
14
+ source_datasets:
15
+ - original
16
+ task_categories:
17
+ - summarization
18
+ paperswithcode_id: multi-xscience
19
+ pretty_name: Multi-XScience
20
+ ---
21
+
22
+ This is a copy of the [Multi-XScience](https://huggingface.co/datasets/multi_x_science_sum) dataset, except the input source documents of its `test` split have been replaced by a __dense__ retriever. The retrieval pipeline used:
23
+
24
+ - __query__: The `related_work` field of each example
25
+ - __corpus__: The union of all documents in the `train`, `validation` and `test` splits
26
+ - __retriever__: [`facebook/contriever-msmarco`](https://huggingface.co/facebook/contriever-msmarco) via [PyTerrier](https://pyterrier.readthedocs.io/en/latest/) with default settings
27
+ - __top-k strategy__: `"max"`, i.e. the number of documents retrieved, `k`, is set as the maximum number of documents seen across examples in this dataset, in this case `k==20`
28
+
29
+ Retrieval results on the `train` set:
30
+
31
+ | Recall@100 | Rprec | Precision@k | Recall@k |
32
+ | ----------- | ----------- | ----------- | ----------- |
33
+ | 0.5270 | 0.2005 | 0.0573 | 0.3785 |
34
+
35
+ Retrieval results on the `validation` set:
36
+
37
+ | Recall@100 | Rprec | Precision@k | Recall@k |
38
+ | ----------- | ----------- | ----------- | ----------- |
39
+ | 0.5310 | 0.2026 | 0.059 | 0.3831 |
40
+
41
+ Retrieval results on the `test` set:
42
+
43
+ | Recall@100 | Rprec | Precision@k | Recall@k |
44
+ | ----------- | ----------- | ----------- | ----------- |
45
+ | 0.5229 | 0.2081 | 0.058 | 0.3794 |
huggingface_dataset/Dataset_Card/anukaver_EstQA.md ADDED
@@ -0,0 +1,24 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ language: et
3
+ ---
4
+
5
+ # Estonian Question Answering dataset
6
+
7
+ * Dataset for extractive question answering in Estonian. It is based on Wikipedia articles, pre-filtered via PageRank. Annotation was done by one person.
8
+ * Train set includes 776 context-question-answer triplets. There are several possible answers per question, each in a separate triplet. Number of different questions is 512.
9
+ * Test set includes 603 samples. Each sample contains one or more golden answers. Altogether there are 892 golden ansewrs.
10
+
11
+ ### Change log
12
+ Test set v1.1 adds some more golden answers.
13
+
14
+ ### Reference
15
+ If you use this dataset for research, please cite the following paper:
16
+
17
+ ```
18
+ @mastersthesis{mastersthesis,
19
+ author = {Anu Käver},
20
+ title = {Extractive Question Answering for Estonian Language},
21
+ school = {Tallinn University of Technology (TalTech)},
22
+ year = 2021
23
+ }
24
+ ```
huggingface_dataset/Dataset_Card/autoevaluate_autoeval-eval-emotion-default-2feb36-1456053837.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: Emanuel/twitter-emotion-deberta-v3-base
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: Emanuel/twitter-emotion-deberta-v3-base
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/autoevaluate_autoeval-staging-eval-project-c76b0e96-8395129.md ADDED
@@ -0,0 +1,31 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ type: predictions
3
+ tags:
4
+ - autotrain
5
+ - evaluation
6
+ datasets:
7
+ - scientific_papers
8
+ eval_info:
9
+ task: summarization
10
+ model: google/bigbird-pegasus-large-arxiv
11
+ metrics: ['bertscore', 'meteor']
12
+ dataset_name: scientific_papers
13
+ dataset_config: pubmed
14
+ dataset_split: test
15
+ col_mapping:
16
+ text: article
17
+ target: abstract
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: Summarization
24
+ * Model: google/bigbird-pegasus-large-arxiv
25
+ * Dataset: scientific_papers
26
+
27
+ To run new evaluation jobs, visit Hugging Face's [automatic model evaluator](https://huggingface.co/spaces/autoevaluate/model-evaluator).
28
+
29
+ ## Contributions
30
+
31
+ Thanks to [@Blaise-g](https://huggingface.co/Blaise-g) for evaluating this model.
huggingface_dataset/Dataset_Card/autoevaluate_autoeval-staging-eval-project-squad_v2-96a02c9c-11975602.md ADDED
@@ -0,0 +1,35 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ type: predictions
3
+ tags:
4
+ - autotrain
5
+ - evaluation
6
+ datasets:
7
+ - squad_v2
8
+ eval_info:
9
+ task: extractive_question_answering
10
+ model: nlpconnect/roberta-base-squad2-nq
11
+ metrics: []
12
+ dataset_name: squad_v2
13
+ dataset_config: squad_v2
14
+ dataset_split: validation
15
+ col_mapping:
16
+ context: context
17
+ question: question
18
+ answers-text: answers.text
19
+ answers-answer_start: answers.answer_start
20
+ ---
21
+ # Dataset Card for AutoTrain Evaluator
22
+
23
+ This repository contains model predictions generated by [AutoTrain](https://huggingface.co/autotrain) for the following task and dataset:
24
+
25
+ * Task: Question Answering
26
+ * Model: nlpconnect/roberta-base-squad2-nq
27
+ * Dataset: squad_v2
28
+ * Config: squad_v2
29
+ * Split: validation
30
+
31
+ To run new evaluation jobs, visit Hugging Face's [automatic model evaluator](https://huggingface.co/spaces/autoevaluate/model-evaluator).
32
+
33
+ ## Contributions
34
+
35
+ Thanks to [@ankur310794](https://huggingface.co/ankur310794) for evaluating this model.
huggingface_dataset/Dataset_Card/emrecan_stsb-mt-turkish.md ADDED
@@ -0,0 +1,21 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ language_creators:
3
+ - machine-generated
4
+ language:
5
+ - tr
6
+ size_categories:
7
+ - 1K<n<10K
8
+ source_datasets:
9
+ - extended|other-sts-b
10
+ task_categories:
11
+ - text-classification
12
+ task_ids:
13
+ - semantic-similarity-scoring
14
+ - text-scoring
15
+ ---
16
+
17
+ # STSb Turkish
18
+
19
+ Semantic textual similarity dataset for the Turkish language. It is a machine translation (Azure) of the [STSb English](http://ixa2.si.ehu.eus/stswiki/index.php/STSbenchmark) dataset. This dataset is not reviewed by expert human translators.
20
+
21
+ Uploaded from [this repository](https://github.com/emrecncelik/sts-benchmark-tr).
huggingface_dataset/Dataset_Card/fake_news_filipino.md ADDED
@@ -0,0 +1,176 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ annotations_creators:
3
+ - expert-generated
4
+ language_creators:
5
+ - crowdsourced
6
+ language:
7
+ - tl
8
+ license:
9
+ - unknown
10
+ multilinguality:
11
+ - monolingual
12
+ size_categories:
13
+ - 1K<n<10K
14
+ source_datasets:
15
+ - original
16
+ task_categories:
17
+ - text-classification
18
+ task_ids:
19
+ - fact-checking
20
+ paperswithcode_id: fake-news-filipino-dataset
21
+ pretty_name: Fake News Filipino
22
+ dataset_info:
23
+ features:
24
+ - name: label
25
+ dtype:
26
+ class_label:
27
+ names:
28
+ '0': '0'
29
+ '1': '1'
30
+ - name: article
31
+ dtype: string
32
+ splits:
33
+ - name: train
34
+ num_bytes: 3623685
35
+ num_examples: 3206
36
+ download_size: 1313458
37
+ dataset_size: 3623685
38
+ ---
39
+
40
+ # Dataset Card for Fake News Filipino
41
+
42
+ ## Table of Contents
43
+ - [Dataset Description](#dataset-description)
44
+ - [Dataset Summary](#dataset-summary)
45
+ - [Supported Tasks and Leaderboards](#supported-tasks-and-leaderboards)
46
+ - [Languages](#languages)
47
+ - [Dataset Structure](#dataset-structure)
48
+ - [Data Instances](#data-instances)
49
+ - [Data Fields](#data-fields)
50
+ - [Data Splits](#data-splits)
51
+ - [Dataset Creation](#dataset-creation)
52
+ - [Curation Rationale](#curation-rationale)
53
+ - [Source Data](#source-data)
54
+ - [Annotations](#annotations)
55
+ - [Personal and Sensitive Information](#personal-and-sensitive-information)
56
+ - [Considerations for Using the Data](#considerations-for-using-the-data)
57
+ - [Social Impact of Dataset](#social-impact-of-dataset)
58
+ - [Discussion of Biases](#discussion-of-biases)
59
+ - [Other Known Limitations](#other-known-limitations)
60
+ - [Additional Information](#additional-information)
61
+ - [Dataset Curators](#dataset-curators)
62
+ - [Licensing Information](#licensing-information)
63
+ - [Citation Information](#citation-information)
64
+ - [Contributions](#contributions)
65
+
66
+ ## Dataset Description
67
+
68
+ - **Homepage:** [Fake News Filipino homepage](https://github.com/jcblaisecruz02/Filipino-Text-Benchmarks)
69
+ - **Repository:** [Fake News Filipino repository](https://github.com/jcblaisecruz02/Filipino-Text-Benchmarks)
70
+ - **Paper:** [LREC 2020 paper](http://www.lrec-conf.org/proceedings/lrec2020/index.html)
71
+ - **Leaderboard:**
72
+ - **Point of Contact:** [Jan Christian Cruz](mailto:jan_christian_cruz@dlsu.edu.ph)
73
+
74
+ ### Dataset Summary
75
+
76
+ Low-Resource Fake News Detection Corpora in Filipino. The first of its kind. Contains 3,206 expertly-labeled news samples, half of which are real and half of which are fake.
77
+
78
+ ### Supported Tasks and Leaderboards
79
+
80
+ [More Information Needed]
81
+
82
+ ### Languages
83
+
84
+ The dataset is primarily in Filipino, with the addition of some English words commonly used in Filipino vernacular.
85
+
86
+ ## Dataset Structure
87
+
88
+ ### Data Instances
89
+
90
+ Sample data:
91
+ ```
92
+ {
93
+ "label": "0",
94
+ "article": "Sa 8-pahinang desisyon, pinaboran ng Sandiganbayan First Division ang petition for Writ of Preliminary Attachment/Garnishment na inihain ng prosekusyon laban sa mambabatas."
95
+ }
96
+ ```
97
+
98
+
99
+ ### Data Fields
100
+
101
+ [More Information Needed]
102
+
103
+ ### Data Splits
104
+
105
+ [More Information Needed]
106
+
107
+ ## Dataset Creation
108
+
109
+ Fake news articles were sourced from online sites that were tagged as fake news sites by the non-profit independent media fact-checking organization Verafiles and the National Union of Journalists in the Philippines (NUJP). Real news articles were sourced from mainstream news websites in the Philippines, including Pilipino Star Ngayon, Abante, and Bandera.
110
+
111
+ ### Curation Rationale
112
+
113
+ We remedy the lack of a proper, curated benchmark dataset for fake news detection in Filipino by constructing and producing what we call “Fake News Filipino.”
114
+
115
+
116
+ ### Source Data
117
+
118
+ #### Initial Data Collection and Normalization
119
+
120
+ We construct the dataset by scraping our source websites, encoding all characters into UTF-8. Preprocessing was light to keep information intact: we retain capitalization and punctuation, and do not correct any misspelled words.
121
+
122
+ #### Who are the source language producers?
123
+
124
+ Jan Christian Blaise Cruz, Julianne Agatha Tan, and Charibeth Cheng
125
+
126
+ ### Annotations
127
+
128
+ #### Annotation process
129
+
130
+ [More Information Needed]
131
+
132
+ #### Who are the annotators?
133
+
134
+ [More Information Needed]
135
+
136
+ ### Personal and Sensitive Information
137
+
138
+ [More Information Needed]
139
+
140
+ ## Considerations for Using the Data
141
+
142
+ ### Social Impact of Dataset
143
+
144
+ [More Information Needed]
145
+
146
+ ### Discussion of Biases
147
+
148
+ [More Information Needed]
149
+
150
+ ### Other Known Limitations
151
+
152
+ [More Information Needed]
153
+
154
+ ## Additional Information
155
+
156
+ ### Dataset Curators
157
+
158
+ [Jan Christian Cruz](mailto:jan_christian_cruz@dlsu.edu.ph), Julianne Agatha Tan, and Charibeth Cheng
159
+
160
+ ### Licensing Information
161
+
162
+ [More Information Needed]
163
+
164
+ ### Citation Information
165
+
166
+ @inproceedings{cruz2020localization,
167
+ title={Localization of Fake News Detection via Multitask Transfer Learning},
168
+ author={Cruz, Jan Christian Blaise and Tan, Julianne Agatha and Cheng, Charibeth},
169
+ booktitle={Proceedings of The 12th Language Resources and Evaluation Conference},
170
+ pages={2596--2604},
171
+ year={2020}
172
+ }
173
+
174
+ ### Contributions
175
+
176
+ Thanks to [@anaerobeth](https://github.com/anaerobeth) for adding this dataset.
huggingface_dataset/Dataset_Card/huggingartists_the-weeknd.md ADDED
@@ -0,0 +1,188 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ language:
3
+ - en
4
+ tags:
5
+ - huggingartists
6
+ - lyrics
7
+ ---
8
+
9
+ # Dataset Card for "huggingartists/the-weeknd"
10
+
11
+ ## Table of Contents
12
+ - [Dataset Description](#dataset-description)
13
+ - [Dataset Summary](#dataset-summary)
14
+ - [Supported Tasks and Leaderboards](#supported-tasks-and-leaderboards)
15
+ - [Languages](#languages)
16
+ - [How to use](#how-to-use)
17
+ - [Dataset Structure](#dataset-structure)
18
+ - [Data Fields](#data-fields)
19
+ - [Data Splits](#data-splits)
20
+ - [Dataset Creation](#dataset-creation)
21
+ - [Curation Rationale](#curation-rationale)
22
+ - [Source Data](#source-data)
23
+ - [Annotations](#annotations)
24
+ - [Personal and Sensitive Information](#personal-and-sensitive-information)
25
+ - [Considerations for Using the Data](#considerations-for-using-the-data)
26
+ - [Social Impact of Dataset](#social-impact-of-dataset)
27
+ - [Discussion of Biases](#discussion-of-biases)
28
+ - [Other Known Limitations](#other-known-limitations)
29
+ - [Additional Information](#additional-information)
30
+ - [Dataset Curators](#dataset-curators)
31
+ - [Licensing Information](#licensing-information)
32
+ - [Citation Information](#citation-information)
33
+
34
+ ## Dataset Description
35
+
36
+ - **Homepage:** [https://github.com/AlekseyKorshuk/huggingartists](https://github.com/AlekseyKorshuk/huggingartists)
37
+ - **Repository:** [https://github.com/AlekseyKorshuk/huggingartists](https://github.com/AlekseyKorshuk/huggingartists)
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 the generated dataset:** 1.849373 MB
41
+
42
+
43
+ <div class="inline-flex flex-col" style="line-height: 1.5;">
44
+ <div class="flex">
45
+ <div style="display:DISPLAY_1; margin-left: auto; margin-right: auto; width: 92px; height:92px; border-radius: 50%; background-size: cover; background-image: url(&#39;https://images.genius.com/f0813e600d43b8b43c94e8ba1dde880a.640x640x1.png&#39;)">
46
+ </div>
47
+ </div>
48
+ <a href="https://huggingface.co/huggingartists/the-weeknd">
49
+ <div style="text-align: center; margin-top: 3px; font-size: 16px; font-weight: 800">🤖 HuggingArtists Model 🤖</div>
50
+ </a>
51
+ <div style="text-align: center; font-size: 16px; font-weight: 800">The Weeknd</div>
52
+ <a href="https://genius.com/artists/the-weeknd">
53
+ <div style="text-align: center; font-size: 14px;">@the-weeknd</div>
54
+ </a>
55
+ </div>
56
+
57
+ ### Dataset Summary
58
+
59
+ The Lyrics dataset parsed from Genius. This dataset is designed to generate lyrics with HuggingArtists.
60
+ Model is available [here](https://huggingface.co/huggingartists/the-weeknd).
61
+
62
+ ### Supported Tasks and Leaderboards
63
+
64
+ [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
65
+
66
+ ### Languages
67
+
68
+ en
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("huggingartists/the-weeknd")
78
+ ```
79
+
80
+ ## Dataset Structure
81
+
82
+ An example of 'train' looks as follows.
83
+ ```
84
+ This example was too long and was cropped:
85
+
86
+ {
87
+ "text": "Look, I was gonna go easy on you\nNot to hurt your feelings\nBut I'm only going to get this one chance\nSomething's wrong, I can feel it..."
88
+ }
89
+ ```
90
+
91
+ ### Data Fields
92
+
93
+ The data fields are the same among all splits.
94
+
95
+ - `text`: a `string` feature.
96
+
97
+
98
+ ### Data Splits
99
+
100
+ | train |validation|test|
101
+ |------:|---------:|---:|
102
+ |TRAIN_1.849373| -| -|
103
+
104
+ 'Train' can be easily divided into 'train' & 'validation' & 'test' with few lines of code:
105
+
106
+ ```python
107
+ from datasets import load_dataset, Dataset, DatasetDict
108
+ import numpy as np
109
+
110
+ datasets = load_dataset("huggingartists/the-weeknd")
111
+
112
+ train_percentage = 0.9
113
+ validation_percentage = 0.07
114
+ test_percentage = 0.03
115
+
116
+ train, validation, test = np.split(datasets['train']['text'], [int(len(datasets['train']['text'])*train_percentage), int(len(datasets['train']['text'])*(train_percentage + validation_percentage))])
117
+
118
+ datasets = DatasetDict(
119
+ {
120
+ 'train': Dataset.from_dict({'text': list(train)}),
121
+ 'validation': Dataset.from_dict({'text': list(validation)}),
122
+ 'test': Dataset.from_dict({'text': list(test)})
123
+ }
124
+ )
125
+ ```
126
+
127
+ ## Dataset Creation
128
+
129
+ ### Curation Rationale
130
+
131
+ [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
132
+
133
+ ### Source Data
134
+
135
+ #### Initial Data Collection and Normalization
136
+
137
+ [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
138
+
139
+ #### Who are the source language producers?
140
+
141
+ [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
142
+
143
+ ### Annotations
144
+
145
+ #### Annotation process
146
+
147
+ [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
148
+
149
+ #### Who are the annotators?
150
+
151
+ [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
152
+
153
+ ### Personal and Sensitive Information
154
+
155
+ [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
156
+
157
+ ## Considerations for Using the Data
158
+
159
+ ### Social Impact of Dataset
160
+
161
+ [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
162
+
163
+ ### Discussion of Biases
164
+
165
+ [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
166
+
167
+ ### Other Known Limitations
168
+
169
+ [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
170
+
171
+ ## Additional Information
172
+
173
+ ### Dataset Curators
174
+
175
+ [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
176
+
177
+ ### Licensing Information
178
+
179
+ [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
180
+
181
+ ### Citation Information
182
+
183
+ ```
184
+ @InProceedings{huggingartists,
185
+ author={Aleksey Korshuk}
186
+ year=2021
187
+ }
188
+ ```
huggingface_dataset/Dataset_Card/huggingartists_v-x-v-prince.md ADDED
@@ -0,0 +1,204 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ language:
3
+ - en
4
+ tags:
5
+ - huggingartists
6
+ - lyrics
7
+ ---
8
+
9
+ # Dataset Card for "huggingartists/v-x-v-prince"
10
+
11
+ ## Table of Contents
12
+ - [Dataset Description](#dataset-description)
13
+ - [Dataset Summary](#dataset-summary)
14
+ - [Supported Tasks and Leaderboards](#supported-tasks-and-leaderboards)
15
+ - [Languages](#languages)
16
+ - [How to use](#how-to-use)
17
+ - [Dataset Structure](#dataset-structure)
18
+ - [Data Fields](#data-fields)
19
+ - [Data Splits](#data-splits)
20
+ - [Dataset Creation](#dataset-creation)
21
+ - [Curation Rationale](#curation-rationale)
22
+ - [Source Data](#source-data)
23
+ - [Annotations](#annotations)
24
+ - [Personal and Sensitive Information](#personal-and-sensitive-information)
25
+ - [Considerations for Using the Data](#considerations-for-using-the-data)
26
+ - [Social Impact of Dataset](#social-impact-of-dataset)
27
+ - [Discussion of Biases](#discussion-of-biases)
28
+ - [Other Known Limitations](#other-known-limitations)
29
+ - [Additional Information](#additional-information)
30
+ - [Dataset Curators](#dataset-curators)
31
+ - [Licensing Information](#licensing-information)
32
+ - [Citation Information](#citation-information)
33
+ - [About](#about)
34
+
35
+ ## Dataset Description
36
+
37
+ - **Homepage:** [https://github.com/AlekseyKorshuk/huggingartists](https://github.com/AlekseyKorshuk/huggingartists)
38
+ - **Repository:** [https://github.com/AlekseyKorshuk/huggingartists](https://github.com/AlekseyKorshuk/huggingartists)
39
+ - **Paper:** [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
40
+ - **Point of Contact:** [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
41
+ - **Size of the generated dataset:** 0.198634 MB
42
+
43
+
44
+ <div class="inline-flex flex-col" style="line-height: 1.5;">
45
+ <div class="flex">
46
+ <div style="display:DISPLAY_1; margin-left: auto; margin-right: auto; width: 92px; height:92px; border-radius: 50%; background-size: cover; background-image: url(&#39;https://images.genius.com/08ad78acc3e91c45a426390e7524d4e9.853x853x1.jpg&#39;)">
47
+ </div>
48
+ </div>
49
+ <a href="https://huggingface.co/huggingartists/v-x-v-prince">
50
+ <div style="text-align: center; margin-top: 3px; font-size: 16px; font-weight: 800">🤖 HuggingArtists Model 🤖</div>
51
+ </a>
52
+ <div style="text-align: center; font-size: 16px; font-weight: 800">V $ X V PRiNCE</div>
53
+ <a href="https://genius.com/artists/v-x-v-prince">
54
+ <div style="text-align: center; font-size: 14px;">@v-x-v-prince</div>
55
+ </a>
56
+ </div>
57
+
58
+ ### Dataset Summary
59
+
60
+ The Lyrics dataset parsed from Genius. This dataset is designed to generate lyrics with HuggingArtists.
61
+ Model is available [here](https://huggingface.co/huggingartists/v-x-v-prince).
62
+
63
+ ### Supported Tasks and Leaderboards
64
+
65
+ [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
66
+
67
+ ### Languages
68
+
69
+ en
70
+
71
+ ## How to use
72
+
73
+ How to load this dataset directly with the datasets library:
74
+
75
+ ```python
76
+ from datasets import load_dataset
77
+
78
+ dataset = load_dataset("huggingartists/v-x-v-prince")
79
+ ```
80
+
81
+ ## Dataset Structure
82
+
83
+ An example of 'train' looks as follows.
84
+ ```
85
+ This example was too long and was cropped:
86
+
87
+ {
88
+ "text": "Look, I was gonna go easy on you\nNot to hurt your feelings\nBut I'm only going to get this one chance\nSomething's wrong, I can feel it..."
89
+ }
90
+ ```
91
+
92
+ ### Data Fields
93
+
94
+ The data fields are the same among all splits.
95
+
96
+ - `text`: a `string` feature.
97
+
98
+
99
+ ### Data Splits
100
+
101
+ | train |validation|test|
102
+ |------:|---------:|---:|
103
+ |77| -| -|
104
+
105
+ 'Train' can be easily divided into 'train' & 'validation' & 'test' with few lines of code:
106
+
107
+ ```python
108
+ from datasets import load_dataset, Dataset, DatasetDict
109
+ import numpy as np
110
+
111
+ datasets = load_dataset("huggingartists/v-x-v-prince")
112
+
113
+ train_percentage = 0.9
114
+ validation_percentage = 0.07
115
+ test_percentage = 0.03
116
+
117
+ train, validation, test = np.split(datasets['train']['text'], [int(len(datasets['train']['text'])*train_percentage), int(len(datasets['train']['text'])*(train_percentage + validation_percentage))])
118
+
119
+ datasets = DatasetDict(
120
+ {
121
+ 'train': Dataset.from_dict({'text': list(train)}),
122
+ 'validation': Dataset.from_dict({'text': list(validation)}),
123
+ 'test': Dataset.from_dict({'text': list(test)})
124
+ }
125
+ )
126
+ ```
127
+
128
+ ## Dataset Creation
129
+
130
+ ### Curation Rationale
131
+
132
+ [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
133
+
134
+ ### Source Data
135
+
136
+ #### Initial Data Collection and Normalization
137
+
138
+ [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
139
+
140
+ #### Who are the source language producers?
141
+
142
+ [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
143
+
144
+ ### Annotations
145
+
146
+ #### Annotation process
147
+
148
+ [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
149
+
150
+ #### Who are the annotators?
151
+
152
+ [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
153
+
154
+ ### Personal and Sensitive Information
155
+
156
+ [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
157
+
158
+ ## Considerations for Using the Data
159
+
160
+ ### Social Impact of Dataset
161
+
162
+ [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
163
+
164
+ ### Discussion of Biases
165
+
166
+ [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
167
+
168
+ ### Other Known Limitations
169
+
170
+ [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
171
+
172
+ ## Additional Information
173
+
174
+ ### Dataset Curators
175
+
176
+ [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
177
+
178
+ ### Licensing Information
179
+
180
+ [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
181
+
182
+ ### Citation Information
183
+
184
+ ```
185
+ @InProceedings{huggingartists,
186
+ author={Aleksey Korshuk}
187
+ year=2021
188
+ }
189
+ ```
190
+
191
+
192
+ ## About
193
+
194
+ *Built by Aleksey Korshuk*
195
+
196
+ [![Follow](https://img.shields.io/github/followers/AlekseyKorshuk?style=social)](https://github.com/AlekseyKorshuk)
197
+
198
+ [![Follow](https://img.shields.io/twitter/follow/alekseykorshuk?style=social)](https://twitter.com/intent/follow?screen_name=alekseykorshuk)
199
+
200
+ [![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)
201
+
202
+ For more details, visit the project repository.
203
+
204
+ [![GitHub stars](https://img.shields.io/github/stars/AlekseyKorshuk/huggingartists?style=social)](https://github.com/AlekseyKorshuk/huggingartists)
huggingface_dataset/Dataset_Card/income_cqadupstack-mathematica-top-20-gen-queries.md ADDED
@@ -0,0 +1,510 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ annotations_creators: []
3
+ language_creators: []
4
+ language:
5
+ - en
6
+ license:
7
+ - cc-by-sa-4.0
8
+ multilinguality:
9
+ - monolingual
10
+ paperswithcode_id: beir
11
+ pretty_name: BEIR Benchmark
12
+ size_categories:
13
+ msmarco:
14
+ - 1M<n<10M
15
+ trec-covid:
16
+ - 100k<n<1M
17
+ nfcorpus:
18
+ - 1K<n<10K
19
+ nq:
20
+ - 1M<n<10M
21
+ hotpotqa:
22
+ - 1M<n<10M
23
+ fiqa:
24
+ - 10K<n<100K
25
+ arguana:
26
+ - 1K<n<10K
27
+ touche-2020:
28
+ - 100K<n<1M
29
+ cqadupstack:
30
+ - 100K<n<1M
31
+ quora:
32
+ - 100K<n<1M
33
+ dbpedia:
34
+ - 1M<n<10M
35
+ scidocs:
36
+ - 10K<n<100K
37
+ fever:
38
+ - 1M<n<10M
39
+ climate-fever:
40
+ - 1M<n<10M
41
+ scifact:
42
+ - 1K<n<10K
43
+ source_datasets: []
44
+ task_categories:
45
+ - text-retrieval
46
+ ---
47
+
48
+ # NFCorpus: 20 generated queries (BEIR Benchmark)
49
+
50
+ This HF dataset contains the top-20 synthetic queries generated for each passage in the above BEIR benchmark dataset.
51
+
52
+ - DocT5query model used: [BeIR/query-gen-msmarco-t5-base-v1](https://huggingface.co/BeIR/query-gen-msmarco-t5-base-v1)
53
+ - id (str): unique document id in NFCorpus in the BEIR benchmark (`corpus.jsonl`).
54
+ - Questions generated: 20
55
+ - Code used for generation: [evaluate_anserini_docT5query_parallel.py](https://github.com/beir-cellar/beir/blob/main/examples/retrieval/evaluation/sparse/evaluate_anserini_docT5query_parallel.py)
56
+
57
+
58
+ Below contains the old dataset card for the BEIR benchmark.
59
+
60
+
61
+ # Dataset Card for BEIR Benchmark
62
+
63
+ ## Table of Contents
64
+ - [Dataset Description](#dataset-description)
65
+ - [Dataset Summary](#dataset-summary)
66
+ - [Supported Tasks and Leaderboards](#supported-tasks-and-leaderboards)
67
+ - [Languages](#languages)
68
+ - [Dataset Structure](#dataset-structure)
69
+ - [Data Instances](#data-instances)
70
+ - [Data Fields](#data-fields)
71
+ - [Data Splits](#data-splits)
72
+ - [Dataset Creation](#dataset-creation)
73
+ - [Curation Rationale](#curation-rationale)
74
+ - [Source Data](#source-data)
75
+ - [Annotations](#annotations)
76
+ - [Personal and Sensitive Information](#personal-and-sensitive-information)
77
+ - [Considerations for Using the Data](#considerations-for-using-the-data)
78
+ - [Social Impact of Dataset](#social-impact-of-dataset)
79
+ - [Discussion of Biases](#discussion-of-biases)
80
+ - [Other Known Limitations](#other-known-limitations)
81
+ - [Additional Information](#additional-information)
82
+ - [Dataset Curators](#dataset-curators)
83
+ - [Licensing Information](#licensing-information)
84
+ - [Citation Information](#citation-information)
85
+ - [Contributions](#contributions)
86
+
87
+ ## Dataset Description
88
+
89
+ - **Homepage:** https://github.com/UKPLab/beir
90
+ - **Repository:** https://github.com/UKPLab/beir
91
+ - **Paper:** https://openreview.net/forum?id=wCu6T5xFjeJ
92
+ - **Leaderboard:** https://docs.google.com/spreadsheets/d/1L8aACyPaXrL8iEelJLGqlMqXKPX2oSP_R10pZoy77Ns
93
+ - **Point of Contact:** nandan.thakur@uwaterloo.ca
94
+
95
+ ### Dataset Summary
96
+
97
+ BEIR is a heterogeneous benchmark that has been built from 18 diverse datasets representing 9 information retrieval tasks:
98
+
99
+ - Fact-checking: [FEVER](http://fever.ai), [Climate-FEVER](http://climatefever.ai), [SciFact](https://github.com/allenai/scifact)
100
+ - Question-Answering: [NQ](https://ai.google.com/research/NaturalQuestions), [HotpotQA](https://hotpotqa.github.io), [FiQA-2018](https://sites.google.com/view/fiqa/)
101
+ - Bio-Medical IR: [TREC-COVID](https://ir.nist.gov/covidSubmit/index.html), [BioASQ](http://bioasq.org), [NFCorpus](https://www.cl.uni-heidelberg.de/statnlpgroup/nfcorpus/)
102
+ - News Retrieval: [TREC-NEWS](https://trec.nist.gov/data/news2019.html), [Robust04](https://trec.nist.gov/data/robust/04.guidelines.html)
103
+ - Argument Retrieval: [Touche-2020](https://webis.de/events/touche-20/shared-task-1.html), [ArguAna](tp://argumentation.bplaced.net/arguana/data)
104
+ - Duplicate Question Retrieval: [Quora](https://www.quora.com/q/quoradata/First-Quora-Dataset-Release-Question-Pairs), [CqaDupstack](http://nlp.cis.unimelb.edu.au/resources/cqadupstack/)
105
+ - Citation-Prediction: [SCIDOCS](https://allenai.org/data/scidocs)
106
+ - Tweet Retrieval: [Signal-1M](https://research.signal-ai.com/datasets/signal1m-tweetir.html)
107
+ - Entity Retrieval: [DBPedia](https://github.com/iai-group/DBpedia-Entity/)
108
+
109
+ All these datasets have been preprocessed and can be used for your experiments.
110
+
111
+
112
+ ```python
113
+
114
+ ```
115
+
116
+ ### Supported Tasks and Leaderboards
117
+
118
+ The dataset supports a leaderboard that evaluates models against task-specific metrics such as F1 or EM, as well as their ability to retrieve supporting information from Wikipedia.
119
+
120
+ The current best performing models can be found [here](https://eval.ai/web/challenges/challenge-page/689/leaderboard/).
121
+
122
+ ### Languages
123
+
124
+ All tasks are in English (`en`).
125
+
126
+ ## Dataset Structure
127
+
128
+ All BEIR datasets must contain a corpus, queries and qrels (relevance judgments file). They must be in the following format:
129
+ - `corpus` file: a `.jsonl` file (jsonlines) that contains a list of dictionaries, each with three fields `_id` with unique document identifier, `title` with document title (optional) and `text` with document paragraph or passage. For example: `{"_id": "doc1", "title": "Albert Einstein", "text": "Albert Einstein was a German-born...."}`
130
+ - `queries` file: a `.jsonl` file (jsonlines) that contains a list of dictionaries, each with two fields `_id` with unique query identifier and `text` with query text. For example: `{"_id": "q1", "text": "Who developed the mass-energy equivalence formula?"}`
131
+ - `qrels` file: a `.tsv` file (tab-seperated) that contains three columns, i.e. the `query-id`, `corpus-id` and `score` in this order. Keep 1st row as header. For example: `q1 doc1 1`
132
+
133
+ ### Data Instances
134
+
135
+ A high level example of any beir dataset:
136
+
137
+ ```python
138
+ corpus = {
139
+ "doc1" : {
140
+ "title": "Albert Einstein",
141
+ "text": "Albert Einstein was a German-born theoretical physicist. who developed the theory of relativity, \
142
+ one of the two pillars of modern physics (alongside quantum mechanics). His work is also known for \
143
+ its influence on the philosophy of science. He is best known to the general public for his mass–energy \
144
+ equivalence formula E = mc2, which has been dubbed 'the world's most famous equation'. He received the 1921 \
145
+ Nobel Prize in Physics 'for his services to theoretical physics, and especially for his discovery of the law \
146
+ of the photoelectric effect', a pivotal step in the development of quantum theory."
147
+ },
148
+ "doc2" : {
149
+ "title": "", # Keep title an empty string if not present
150
+ "text": "Wheat beer is a top-fermented beer which is brewed with a large proportion of wheat relative to the amount of \
151
+ malted barley. The two main varieties are German Weißbier and Belgian witbier; other types include Lambic (made\
152
+ with wild yeast), Berliner Weisse (a cloudy, sour beer), and Gose (a sour, salty beer)."
153
+ },
154
+ }
155
+
156
+ queries = {
157
+ "q1" : "Who developed the mass-energy equivalence formula?",
158
+ "q2" : "Which beer is brewed with a large proportion of wheat?"
159
+ }
160
+
161
+ qrels = {
162
+ "q1" : {"doc1": 1},
163
+ "q2" : {"doc2": 1},
164
+ }
165
+ ```
166
+
167
+ ### Data Fields
168
+
169
+ Examples from all configurations have the following features:
170
+
171
+ ### Corpus
172
+ - `corpus`: a `dict` feature representing the document title and passage text, made up of:
173
+ - `_id`: a `string` feature representing the unique document id
174
+ - `title`: a `string` feature, denoting the title of the document.
175
+ - `text`: a `string` feature, denoting the text of the document.
176
+
177
+ ### Queries
178
+ - `queries`: a `dict` feature representing the query, made up of:
179
+ - `_id`: a `string` feature representing the unique query id
180
+ - `text`: a `string` feature, denoting the text of the query.
181
+
182
+ ### Qrels
183
+ - `qrels`: a `dict` feature representing the query document relevance judgements, made up of:
184
+ - `_id`: a `string` feature representing the query id
185
+ - `_id`: a `string` feature, denoting the document id.
186
+ - `score`: a `int32` feature, denoting the relevance judgement between query and document.
187
+
188
+
189
+ ### Data Splits
190
+
191
+ | Dataset | Website| BEIR-Name | Type | Queries | Corpus | Rel D/Q | Down-load | md5 |
192
+ | -------- | -----| ---------| --------- | ----------- | ---------| ---------| :----------: | :------:|
193
+ | MSMARCO | [Homepage](https://microsoft.github.io/msmarco/)| ``msmarco`` | ``train``<br>``dev``<br>``test``| 6,980 | 8.84M | 1.1 | [Link](https://public.ukp.informatik.tu-darmstadt.de/thakur/BEIR/datasets/msmarco.zip) | ``444067daf65d982533ea17ebd59501e4`` |
194
+ | TREC-COVID | [Homepage](https://ir.nist.gov/covidSubmit/index.html)| ``trec-covid``| ``test``| 50| 171K| 493.5 | [Link](https://public.ukp.informatik.tu-darmstadt.de/thakur/BEIR/datasets/trec-covid.zip) | ``ce62140cb23feb9becf6270d0d1fe6d1`` |
195
+ | NFCorpus | [Homepage](https://www.cl.uni-heidelberg.de/statnlpgroup/nfcorpus/) | ``nfcorpus`` | ``train``<br>``dev``<br>``test``| 323 | 3.6K | 38.2 | [Link](https://public.ukp.informatik.tu-darmstadt.de/thakur/BEIR/datasets/nfcorpus.zip) | ``a89dba18a62ef92f7d323ec890a0d38d`` |
196
+ | BioASQ | [Homepage](http://bioasq.org) | ``bioasq``| ``train``<br>``test`` | 500 | 14.91M | 8.05 | No | [How to Reproduce?](https://github.com/UKPLab/beir/blob/main/examples/dataset#2-bioasq) |
197
+ | NQ | [Homepage](https://ai.google.com/research/NaturalQuestions) | ``nq``| ``train``<br>``test``| 3,452 | 2.68M | 1.2 | [Link](https://public.ukp.informatik.tu-darmstadt.de/thakur/BEIR/datasets/nq.zip) | ``d4d3d2e48787a744b6f6e691ff534307`` |
198
+ | HotpotQA | [Homepage](https://hotpotqa.github.io) | ``hotpotqa``| ``train``<br>``dev``<br>``test``| 7,405 | 5.23M | 2.0 | [Link](https://public.ukp.informatik.tu-darmstadt.de/thakur/BEIR/datasets/hotpotqa.zip) | ``f412724f78b0d91183a0e86805e16114`` |
199
+ | FiQA-2018 | [Homepage](https://sites.google.com/view/fiqa/) | ``fiqa`` | ``train``<br>``dev``<br>``test``| 648 | 57K | 2.6 | [Link](https://public.ukp.informatik.tu-darmstadt.de/thakur/BEIR/datasets/fiqa.zip) | ``17918ed23cd04fb15047f73e6c3bd9d9`` |
200
+ | Signal-1M(RT) | [Homepage](https://research.signal-ai.com/datasets/signal1m-tweetir.html)| ``signal1m`` | ``test``| 97 | 2.86M | 19.6 | No | [How to Reproduce?](https://github.com/UKPLab/beir/blob/main/examples/dataset#4-signal-1m) |
201
+ | TREC-NEWS | [Homepage](https://trec.nist.gov/data/news2019.html) | ``trec-news`` | ``test``| 57 | 595K | 19.6 | No | [How to Reproduce?](https://github.com/UKPLab/beir/blob/main/examples/dataset#1-trec-news) |
202
+ | ArguAna | [Homepage](http://argumentation.bplaced.net/arguana/data) | ``arguana``| ``test`` | 1,406 | 8.67K | 1.0 | [Link](https://public.ukp.informatik.tu-darmstadt.de/thakur/BEIR/datasets/arguana.zip) | ``8ad3e3c2a5867cdced806d6503f29b99`` |
203
+ | Touche-2020| [Homepage](https://webis.de/events/touche-20/shared-task-1.html) | ``webis-touche2020``| ``test``| 49 | 382K | 19.0 | [Link](https://public.ukp.informatik.tu-darmstadt.de/thakur/BEIR/datasets/webis-touche2020.zip) | ``46f650ba5a527fc69e0a6521c5a23563`` |
204
+ | CQADupstack| [Homepage](http://nlp.cis.unimelb.edu.au/resources/cqadupstack/) | ``cqadupstack``| ``test``| 13,145 | 457K | 1.4 | [Link](https://public.ukp.informatik.tu-darmstadt.de/thakur/BEIR/datasets/cqadupstack.zip) | ``4e41456d7df8ee7760a7f866133bda78`` |
205
+ | Quora| [Homepage](https://www.quora.com/q/quoradata/First-Quora-Dataset-Release-Question-Pairs) | ``quora``| ``dev``<br>``test``| 10,000 | 523K | 1.6 | [Link](https://public.ukp.informatik.tu-darmstadt.de/thakur/BEIR/datasets/quora.zip) | ``18fb154900ba42a600f84b839c173167`` |
206
+ | DBPedia | [Homepage](https://github.com/iai-group/DBpedia-Entity/) | ``dbpedia-entity``| ``dev``<br>``test``| 400 | 4.63M | 38.2 | [Link](https://public.ukp.informatik.tu-darmstadt.de/thakur/BEIR/datasets/dbpedia-entity.zip) | ``c2a39eb420a3164af735795df012ac2c`` |
207
+ | SCIDOCS| [Homepage](https://allenai.org/data/scidocs) | ``scidocs``| ``test``| 1,000 | 25K | 4.9 | [Link](https://public.ukp.informatik.tu-darmstadt.de/thakur/BEIR/datasets/scidocs.zip) | ``38121350fc3a4d2f48850f6aff52e4a9`` |
208
+ | FEVER | [Homepage](http://fever.ai) | ``fever``| ``train``<br>``dev``<br>``test``| 6,666 | 5.42M | 1.2| [Link](https://public.ukp.informatik.tu-darmstadt.de/thakur/BEIR/datasets/fever.zip) | ``5a818580227bfb4b35bb6fa46d9b6c03`` |
209
+ | Climate-FEVER| [Homepage](http://climatefever.ai) | ``climate-fever``|``test``| 1,535 | 5.42M | 3.0 | [Link](https://public.ukp.informatik.tu-darmstadt.de/thakur/BEIR/datasets/climate-fever.zip) | ``8b66f0a9126c521bae2bde127b4dc99d`` |
210
+ | SciFact| [Homepage](https://github.com/allenai/scifact) | ``scifact``| ``train``<br>``test``| 300 | 5K | 1.1 | [Link](https://public.ukp.informatik.tu-darmstadt.de/thakur/BEIR/datasets/scifact.zip) | ``5f7d1de60b170fc8027bb7898e2efca1`` |
211
+ | Robust04 | [Homepage](https://trec.nist.gov/data/robust/04.guidelines.html) | ``robust04``| ``test``| 249 | 528K | 69.9 | No | [How to Reproduce?](https://github.com/UKPLab/beir/blob/main/examples/dataset#3-robust04) |
212
+
213
+
214
+ ## Dataset Creation
215
+
216
+ ### Curation Rationale
217
+
218
+ [Needs More Information]
219
+
220
+ ### Source Data
221
+
222
+ #### Initial Data Collection and Normalization
223
+
224
+ [Needs More Information]
225
+
226
+ #### Who are the source language producers?
227
+
228
+ [Needs More Information]
229
+
230
+ ### Annotations
231
+
232
+ #### Annotation process
233
+
234
+ [Needs More Information]
235
+
236
+ #### Who are the annotators?
237
+
238
+ [Needs More Information]
239
+
240
+ ### Personal and Sensitive Information
241
+
242
+ [Needs More Information]
243
+
244
+ ## Considerations for Using the Data
245
+
246
+ ### Social Impact of Dataset
247
+
248
+ [Needs More Information]
249
+
250
+ ### Discussion of Biases
251
+
252
+ [Needs More Information]
253
+
254
+ ### Other Known Limitations
255
+
256
+ [Needs More Information]
257
+
258
+ ## Additional Information
259
+
260
+ ### Dataset Curators
261
+
262
+ [Needs More Information]
263
+
264
+ ### Licensing Information
265
+
266
+ [Needs More Information]
267
+
268
+ ### Citation Information
269
+
270
+ Cite as:
271
+ ```
272
+ @inproceedings{
273
+ thakur2021beir,
274
+ title={{BEIR}: A Heterogeneous Benchmark for Zero-shot Evaluation of Information Retrieval Models},
275
+ author={Nandan Thakur and Nils Reimers and Andreas R{\"u}ckl{\'e} and Abhishek Srivastava and Iryna Gurevych},
276
+ booktitle={Thirty-fifth Conference on Neural Information Processing Systems Datasets and Benchmarks Track (Round 2)},
277
+ year={2021},
278
+ url={https://openreview.net/forum?id=wCu6T5xFjeJ}
279
+ }
280
+ ```
281
+
282
+ ### Contributions
283
+
284
+ Thanks to [@Nthakur20](https://github.com/Nthakur20) for adding this dataset.Top-20 generated queries for every passage in NFCorpus
285
+
286
+
287
+ # Dataset Card for BEIR Benchmark
288
+
289
+ ## Table of Contents
290
+ - [Dataset Description](#dataset-description)
291
+ - [Dataset Summary](#dataset-summary)
292
+ - [Supported Tasks and Leaderboards](#supported-tasks-and-leaderboards)
293
+ - [Languages](#languages)
294
+ - [Dataset Structure](#dataset-structure)
295
+ - [Data Instances](#data-instances)
296
+ - [Data Fields](#data-fields)
297
+ - [Data Splits](#data-splits)
298
+ - [Dataset Creation](#dataset-creation)
299
+ - [Curation Rationale](#curation-rationale)
300
+ - [Source Data](#source-data)
301
+ - [Annotations](#annotations)
302
+ - [Personal and Sensitive Information](#personal-and-sensitive-information)
303
+ - [Considerations for Using the Data](#considerations-for-using-the-data)
304
+ - [Social Impact of Dataset](#social-impact-of-dataset)
305
+ - [Discussion of Biases](#discussion-of-biases)
306
+ - [Other Known Limitations](#other-known-limitations)
307
+ - [Additional Information](#additional-information)
308
+ - [Dataset Curators](#dataset-curators)
309
+ - [Licensing Information](#licensing-information)
310
+ - [Citation Information](#citation-information)
311
+ - [Contributions](#contributions)
312
+
313
+ ## Dataset Description
314
+
315
+ - **Homepage:** https://github.com/UKPLab/beir
316
+ - **Repository:** https://github.com/UKPLab/beir
317
+ - **Paper:** https://openreview.net/forum?id=wCu6T5xFjeJ
318
+ - **Leaderboard:** https://docs.google.com/spreadsheets/d/1L8aACyPaXrL8iEelJLGqlMqXKPX2oSP_R10pZoy77Ns
319
+ - **Point of Contact:** nandan.thakur@uwaterloo.ca
320
+
321
+ ### Dataset Summary
322
+
323
+ BEIR is a heterogeneous benchmark that has been built from 18 diverse datasets representing 9 information retrieval tasks:
324
+
325
+ - Fact-checking: [FEVER](http://fever.ai), [Climate-FEVER](http://climatefever.ai), [SciFact](https://github.com/allenai/scifact)
326
+ - Question-Answering: [NQ](https://ai.google.com/research/NaturalQuestions), [HotpotQA](https://hotpotqa.github.io), [FiQA-2018](https://sites.google.com/view/fiqa/)
327
+ - Bio-Medical IR: [TREC-COVID](https://ir.nist.gov/covidSubmit/index.html), [BioASQ](http://bioasq.org), [NFCorpus](https://www.cl.uni-heidelberg.de/statnlpgroup/nfcorpus/)
328
+ - News Retrieval: [TREC-NEWS](https://trec.nist.gov/data/news2019.html), [Robust04](https://trec.nist.gov/data/robust/04.guidelines.html)
329
+ - Argument Retrieval: [Touche-2020](https://webis.de/events/touche-20/shared-task-1.html), [ArguAna](tp://argumentation.bplaced.net/arguana/data)
330
+ - Duplicate Question Retrieval: [Quora](https://www.quora.com/q/quoradata/First-Quora-Dataset-Release-Question-Pairs), [CqaDupstack](http://nlp.cis.unimelb.edu.au/resources/cqadupstack/)
331
+ - Citation-Prediction: [SCIDOCS](https://allenai.org/data/scidocs)
332
+ - Tweet Retrieval: [Signal-1M](https://research.signal-ai.com/datasets/signal1m-tweetir.html)
333
+ - Entity Retrieval: [DBPedia](https://github.com/iai-group/DBpedia-Entity/)
334
+
335
+ All these datasets have been preprocessed and can be used for your experiments.
336
+
337
+
338
+ ```python
339
+
340
+ ```
341
+
342
+ ### Supported Tasks and Leaderboards
343
+
344
+ The dataset supports a leaderboard that evaluates models against task-specific metrics such as F1 or EM, as well as their ability to retrieve supporting information from Wikipedia.
345
+
346
+ The current best performing models can be found [here](https://eval.ai/web/challenges/challenge-page/689/leaderboard/).
347
+
348
+ ### Languages
349
+
350
+ All tasks are in English (`en`).
351
+
352
+ ## Dataset Structure
353
+
354
+ All BEIR datasets must contain a corpus, queries and qrels (relevance judgments file). They must be in the following format:
355
+ - `corpus` file: a `.jsonl` file (jsonlines) that contains a list of dictionaries, each with three fields `_id` with unique document identifier, `title` with document title (optional) and `text` with document paragraph or passage. For example: `{"_id": "doc1", "title": "Albert Einstein", "text": "Albert Einstein was a German-born...."}`
356
+ - `queries` file: a `.jsonl` file (jsonlines) that contains a list of dictionaries, each with two fields `_id` with unique query identifier and `text` with query text. For example: `{"_id": "q1", "text": "Who developed the mass-energy equivalence formula?"}`
357
+ - `qrels` file: a `.tsv` file (tab-seperated) that contains three columns, i.e. the `query-id`, `corpus-id` and `score` in this order. Keep 1st row as header. For example: `q1 doc1 1`
358
+
359
+ ### Data Instances
360
+
361
+ A high level example of any beir dataset:
362
+
363
+ ```python
364
+ corpus = {
365
+ "doc1" : {
366
+ "title": "Albert Einstein",
367
+ "text": "Albert Einstein was a German-born theoretical physicist. who developed the theory of relativity, \
368
+ one of the two pillars of modern physics (alongside quantum mechanics). His work is also known for \
369
+ its influence on the philosophy of science. He is best known to the general public for his mass–energy \
370
+ equivalence formula E = mc2, which has been dubbed 'the world's most famous equation'. He received the 1921 \
371
+ Nobel Prize in Physics 'for his services to theoretical physics, and especially for his discovery of the law \
372
+ of the photoelectric effect', a pivotal step in the development of quantum theory."
373
+ },
374
+ "doc2" : {
375
+ "title": "", # Keep title an empty string if not present
376
+ "text": "Wheat beer is a top-fermented beer which is brewed with a large proportion of wheat relative to the amount of \
377
+ malted barley. The two main varieties are German Weißbier and Belgian witbier; other types include Lambic (made\
378
+ with wild yeast), Berliner Weisse (a cloudy, sour beer), and Gose (a sour, salty beer)."
379
+ },
380
+ }
381
+
382
+ queries = {
383
+ "q1" : "Who developed the mass-energy equivalence formula?",
384
+ "q2" : "Which beer is brewed with a large proportion of wheat?"
385
+ }
386
+
387
+ qrels = {
388
+ "q1" : {"doc1": 1},
389
+ "q2" : {"doc2": 1},
390
+ }
391
+ ```
392
+
393
+ ### Data Fields
394
+
395
+ Examples from all configurations have the following features:
396
+
397
+ ### Corpus
398
+ - `corpus`: a `dict` feature representing the document title and passage text, made up of:
399
+ - `_id`: a `string` feature representing the unique document id
400
+ - `title`: a `string` feature, denoting the title of the document.
401
+ - `text`: a `string` feature, denoting the text of the document.
402
+
403
+ ### Queries
404
+ - `queries`: a `dict` feature representing the query, made up of:
405
+ - `_id`: a `string` feature representing the unique query id
406
+ - `text`: a `string` feature, denoting the text of the query.
407
+
408
+ ### Qrels
409
+ - `qrels`: a `dict` feature representing the query document relevance judgements, made up of:
410
+ - `_id`: a `string` feature representing the query id
411
+ - `_id`: a `string` feature, denoting the document id.
412
+ - `score`: a `int32` feature, denoting the relevance judgement between query and document.
413
+
414
+
415
+ ### Data Splits
416
+
417
+ | Dataset | Website| BEIR-Name | Type | Queries | Corpus | Rel D/Q | Down-load | md5 |
418
+ | -------- | -----| ---------| --------- | ----------- | ---------| ---------| :----------: | :------:|
419
+ | MSMARCO | [Homepage](https://microsoft.github.io/msmarco/)| ``msmarco`` | ``train``<br>``dev``<br>``test``| 6,980 | 8.84M | 1.1 | [Link](https://public.ukp.informatik.tu-darmstadt.de/thakur/BEIR/datasets/msmarco.zip) | ``444067daf65d982533ea17ebd59501e4`` |
420
+ | TREC-COVID | [Homepage](https://ir.nist.gov/covidSubmit/index.html)| ``trec-covid``| ``test``| 50| 171K| 493.5 | [Link](https://public.ukp.informatik.tu-darmstadt.de/thakur/BEIR/datasets/trec-covid.zip) | ``ce62140cb23feb9becf6270d0d1fe6d1`` |
421
+ | NFCorpus | [Homepage](https://www.cl.uni-heidelberg.de/statnlpgroup/nfcorpus/) | ``nfcorpus`` | ``train``<br>``dev``<br>``test``| 323 | 3.6K | 38.2 | [Link](https://public.ukp.informatik.tu-darmstadt.de/thakur/BEIR/datasets/nfcorpus.zip) | ``a89dba18a62ef92f7d323ec890a0d38d`` |
422
+ | BioASQ | [Homepage](http://bioasq.org) | ``bioasq``| ``train``<br>``test`` | 500 | 14.91M | 8.05 | No | [How to Reproduce?](https://github.com/UKPLab/beir/blob/main/examples/dataset#2-bioasq) |
423
+ | NQ | [Homepage](https://ai.google.com/research/NaturalQuestions) | ``nq``| ``train``<br>``test``| 3,452 | 2.68M | 1.2 | [Link](https://public.ukp.informatik.tu-darmstadt.de/thakur/BEIR/datasets/nq.zip) | ``d4d3d2e48787a744b6f6e691ff534307`` |
424
+ | HotpotQA | [Homepage](https://hotpotqa.github.io) | ``hotpotqa``| ``train``<br>``dev``<br>``test``| 7,405 | 5.23M | 2.0 | [Link](https://public.ukp.informatik.tu-darmstadt.de/thakur/BEIR/datasets/hotpotqa.zip) | ``f412724f78b0d91183a0e86805e16114`` |
425
+ | FiQA-2018 | [Homepage](https://sites.google.com/view/fiqa/) | ``fiqa`` | ``train``<br>``dev``<br>``test``| 648 | 57K | 2.6 | [Link](https://public.ukp.informatik.tu-darmstadt.de/thakur/BEIR/datasets/fiqa.zip) | ``17918ed23cd04fb15047f73e6c3bd9d9`` |
426
+ | Signal-1M(RT) | [Homepage](https://research.signal-ai.com/datasets/signal1m-tweetir.html)| ``signal1m`` | ``test``| 97 | 2.86M | 19.6 | No | [How to Reproduce?](https://github.com/UKPLab/beir/blob/main/examples/dataset#4-signal-1m) |
427
+ | TREC-NEWS | [Homepage](https://trec.nist.gov/data/news2019.html) | ``trec-news`` | ``test``| 57 | 595K | 19.6 | No | [How to Reproduce?](https://github.com/UKPLab/beir/blob/main/examples/dataset#1-trec-news) |
428
+ | ArguAna | [Homepage](http://argumentation.bplaced.net/arguana/data) | ``arguana``| ``test`` | 1,406 | 8.67K | 1.0 | [Link](https://public.ukp.informatik.tu-darmstadt.de/thakur/BEIR/datasets/arguana.zip) | ``8ad3e3c2a5867cdced806d6503f29b99`` |
429
+ | Touche-2020| [Homepage](https://webis.de/events/touche-20/shared-task-1.html) | ``webis-touche2020``| ``test``| 49 | 382K | 19.0 | [Link](https://public.ukp.informatik.tu-darmstadt.de/thakur/BEIR/datasets/webis-touche2020.zip) | ``46f650ba5a527fc69e0a6521c5a23563`` |
430
+ | CQADupstack| [Homepage](http://nlp.cis.unimelb.edu.au/resources/cqadupstack/) | ``cqadupstack``| ``test``| 13,145 | 457K | 1.4 | [Link](https://public.ukp.informatik.tu-darmstadt.de/thakur/BEIR/datasets/cqadupstack.zip) | ``4e41456d7df8ee7760a7f866133bda78`` |
431
+ | Quora| [Homepage](https://www.quora.com/q/quoradata/First-Quora-Dataset-Release-Question-Pairs) | ``quora``| ``dev``<br>``test``| 10,000 | 523K | 1.6 | [Link](https://public.ukp.informatik.tu-darmstadt.de/thakur/BEIR/datasets/quora.zip) | ``18fb154900ba42a600f84b839c173167`` |
432
+ | DBPedia | [Homepage](https://github.com/iai-group/DBpedia-Entity/) | ``dbpedia-entity``| ``dev``<br>``test``| 400 | 4.63M | 38.2 | [Link](https://public.ukp.informatik.tu-darmstadt.de/thakur/BEIR/datasets/dbpedia-entity.zip) | ``c2a39eb420a3164af735795df012ac2c`` |
433
+ | SCIDOCS| [Homepage](https://allenai.org/data/scidocs) | ``scidocs``| ``test``| 1,000 | 25K | 4.9 | [Link](https://public.ukp.informatik.tu-darmstadt.de/thakur/BEIR/datasets/scidocs.zip) | ``38121350fc3a4d2f48850f6aff52e4a9`` |
434
+ | FEVER | [Homepage](http://fever.ai) | ``fever``| ``train``<br>``dev``<br>``test``| 6,666 | 5.42M | 1.2| [Link](https://public.ukp.informatik.tu-darmstadt.de/thakur/BEIR/datasets/fever.zip) | ``5a818580227bfb4b35bb6fa46d9b6c03`` |
435
+ | Climate-FEVER| [Homepage](http://climatefever.ai) | ``climate-fever``|``test``| 1,535 | 5.42M | 3.0 | [Link](https://public.ukp.informatik.tu-darmstadt.de/thakur/BEIR/datasets/climate-fever.zip) | ``8b66f0a9126c521bae2bde127b4dc99d`` |
436
+ | SciFact| [Homepage](https://github.com/allenai/scifact) | ``scifact``| ``train``<br>``test``| 300 | 5K | 1.1 | [Link](https://public.ukp.informatik.tu-darmstadt.de/thakur/BEIR/datasets/scifact.zip) | ``5f7d1de60b170fc8027bb7898e2efca1`` |
437
+ | Robust04 | [Homepage](https://trec.nist.gov/data/robust/04.guidelines.html) | ``robust04``| ``test``| 249 | 528K | 69.9 | No | [How to Reproduce?](https://github.com/UKPLab/beir/blob/main/examples/dataset#3-robust04) |
438
+
439
+
440
+ ## Dataset Creation
441
+
442
+ ### Curation Rationale
443
+
444
+ [Needs More Information]
445
+
446
+ ### Source Data
447
+
448
+ #### Initial Data Collection and Normalization
449
+
450
+ [Needs More Information]
451
+
452
+ #### Who are the source language producers?
453
+
454
+ [Needs More Information]
455
+
456
+ ### Annotations
457
+
458
+ #### Annotation process
459
+
460
+ [Needs More Information]
461
+
462
+ #### Who are the annotators?
463
+
464
+ [Needs More Information]
465
+
466
+ ### Personal and Sensitive Information
467
+
468
+ [Needs More Information]
469
+
470
+ ## Considerations for Using the Data
471
+
472
+ ### Social Impact of Dataset
473
+
474
+ [Needs More Information]
475
+
476
+ ### Discussion of Biases
477
+
478
+ [Needs More Information]
479
+
480
+ ### Other Known Limitations
481
+
482
+ [Needs More Information]
483
+
484
+ ## Additional Information
485
+
486
+ ### Dataset Curators
487
+
488
+ [Needs More Information]
489
+
490
+ ### Licensing Information
491
+
492
+ [Needs More Information]
493
+
494
+ ### Citation Information
495
+
496
+ Cite as:
497
+ ```
498
+ @inproceedings{
499
+ thakur2021beir,
500
+ title={{BEIR}: A Heterogeneous Benchmark for Zero-shot Evaluation of Information Retrieval Models},
501
+ author={Nandan Thakur and Nils Reimers and Andreas R{\"u}ckl{\'e} and Abhishek Srivastava and Iryna Gurevych},
502
+ booktitle={Thirty-fifth Conference on Neural Information Processing Systems Datasets and Benchmarks Track (Round 2)},
503
+ year={2021},
504
+ url={https://openreview.net/forum?id=wCu6T5xFjeJ}
505
+ }
506
+ ```
507
+
508
+ ### Contributions
509
+
510
+ Thanks to [@Nthakur20](https://github.com/Nthakur20) for adding this dataset.
huggingface_dataset/Dataset_Card/its5Q_yandex-q.md ADDED
@@ -0,0 +1,75 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ annotations_creators:
3
+ - crowdsourced
4
+ language:
5
+ - ru
6
+ language_creators:
7
+ - crowdsourced
8
+ license:
9
+ - cc0-1.0
10
+ multilinguality:
11
+ - monolingual
12
+ pretty_name: Yandex.Q
13
+ size_categories:
14
+ - 100K<n<1M
15
+ source_datasets:
16
+ - original
17
+ tags: []
18
+ task_categories:
19
+ - text-generation
20
+ - question-answering
21
+ task_ids:
22
+ - language-modeling
23
+ - open-domain-qa
24
+ ---
25
+
26
+ # Dataset Card for Yandex.Q
27
+
28
+ ## Table of Contents
29
+ - [Table of Contents](#table-of-contents)
30
+ - [Dataset Description](#dataset-description)
31
+ - [Dataset Summary](#dataset-summary)
32
+ - [Languages](#languages)
33
+ - [Dataset Structure](#dataset-structure)
34
+ - [Data Fields](#data-fields)
35
+ - [Data Splits](#data-splits)
36
+ - [Dataset Creation](#dataset-creation)
37
+ - [Additional Information](#additional-information)
38
+ - [Dataset Curators](#dataset-curators)
39
+ - [Citation Information](#citation-information)
40
+
41
+ ## Dataset Description
42
+
43
+ - **Repository:** https://github.com/its5Q/yandex-q
44
+
45
+ ### Dataset Summary
46
+
47
+ This is a dataset of questions and answers scraped from [Yandex.Q](https://yandex.ru/q/). There are 836810 answered questions out of the total of 1297670.
48
+ The full dataset that includes all metadata returned by Yandex.Q APIs and contains unanswered questions can be found in `full.jsonl.gz`
49
+
50
+ ### Languages
51
+
52
+ The dataset is mostly in Russian, but there may be other languages present
53
+
54
+ ## Dataset Structure
55
+
56
+ ### Data Fields
57
+
58
+ The dataset consists of 3 fields:
59
+ - `question` - question title (`string`)
60
+ - `description` - question description (`string` or `null`)
61
+ - `answer` - answer to the question (`string`)
62
+
63
+ ### Data Splits
64
+
65
+ All 836810 examples are in the train split, there is no validation split.
66
+
67
+ ## Dataset Creation
68
+
69
+ The data was scraped through some "hidden" APIs using several scripts, located in [my GitHub repository](https://github.com/its5Q/yandex-q)
70
+
71
+ ## Additional Information
72
+
73
+ ### Dataset Curators
74
+
75
+ - https://github.com/its5Q
huggingface_dataset/Dataset_Card/lewtun_github-issues.md ADDED
@@ -0,0 +1,161 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Dataset Card for GitHub Issues
2
+
3
+ ## Dataset Description
4
+
5
+ - **Point of Contact:** [Lewis Tunstall](lewis@huggingface.co)
6
+
7
+ ### Dataset Summary
8
+
9
+ GitHub Issues is a dataset consisting of GitHub issues and pull requests associated with the 🤗 Datasets [repository](https://github.com/huggingface/datasets). It is intended for educational purposes and can be used for semantic search or multilabel text classification. The contents of each GitHub issue are in English and concern the domain of datasets for NLP, computer vision, and beyond.
10
+
11
+ ### Supported Tasks and Leaderboards
12
+
13
+ For each of the tasks tagged for this dataset, give a brief description of the tag, metrics, and suggested models (with a link to their HuggingFace implementation if available). Give a similar description of tasks that were not covered by the structured tag set (repace the `task-category-tag` with an appropriate `other:other-task-name`).
14
+
15
+ - `task-category-tag`: The dataset can be used to train a model for [TASK NAME], which consists in [TASK DESCRIPTION]. Success on this task is typically measured by achieving a *high/low* [metric name](https://huggingface.co/metrics/metric_name). The ([model name](https://huggingface.co/model_name) or [model class](https://huggingface.co/transformers/model_doc/model_class.html)) model currently achieves the following score. *[IF A LEADERBOARD IS AVAILABLE]:* This task has an active leaderboard which can be found at [leaderboard url]() and ranks models based on [metric name](https://huggingface.co/metrics/metric_name) while also reporting [other metric name](https://huggingface.co/metrics/other_metric_name).
16
+
17
+ ### Languages
18
+
19
+ Provide a brief overview of the languages represented in the dataset. Describe relevant details about specifics of the language such as whether it is social media text, African American English,...
20
+
21
+ When relevant, please provide [BCP-47 codes](https://tools.ietf.org/html/bcp47), which consist of a [primary language subtag](https://tools.ietf.org/html/bcp47#section-2.2.1), with a [script subtag](https://tools.ietf.org/html/bcp47#section-2.2.3) and/or [region subtag](https://tools.ietf.org/html/bcp47#section-2.2.4) if available.
22
+
23
+ ## Dataset Structure
24
+
25
+ ### Data Instances
26
+
27
+ Provide an JSON-formatted example and brief description of a typical instance in the dataset. If available, provide a link to further examples.
28
+
29
+ ```
30
+ {
31
+ 'example_field': ...,
32
+ ...
33
+ }
34
+ ```
35
+
36
+ Provide any additional information that is not covered in the other sections about the data here. In particular describe any relationships between data points and if these relationships are made explicit.
37
+
38
+ ### Data Fields
39
+
40
+ List and describe the fields present in the dataset. Mention their data type, and whether they are used as input or output in any of the tasks the dataset currently supports. If the data has span indices, describe their attributes, such as whether they are at the character level or word level, whether they are contiguous or not, etc. If the datasets contains example IDs, state whether they have an inherent meaning, such as a mapping to other datasets or pointing to relationships between data points.
41
+
42
+ - `example_field`: description of `example_field`
43
+
44
+ Note that the descriptions can be initialized with the **Show Markdown Data Fields** output of the [tagging app](https://github.com/huggingface/datasets-tagging), you will then only need to refine the generated descriptions.
45
+
46
+ ### Data Splits
47
+
48
+ Describe and name the splits in the dataset if there are more than one.
49
+
50
+ Describe any criteria for splitting the data, if used. If their are differences between the splits (e.g. if the training annotations are machine-generated and the dev and test ones are created by humans, or if different numbers of annotators contributed to each example), describe them here.
51
+
52
+ Provide the sizes of each split. As appropriate, provide any descriptive statistics for the features, such as average length. For example:
53
+
54
+ | | Tain | Valid | Test |
55
+ | ----- | ------ | ----- | ---- |
56
+ | Input Sentences | | | |
57
+ | Average Sentence Length | | | |
58
+
59
+ ## Dataset Creation
60
+
61
+ ### Curation Rationale
62
+
63
+ What need motivated the creation of this dataset? What are some of the reasons underlying the major choices involved in putting it together?
64
+
65
+ ### Source Data
66
+
67
+ This section describes the source data (e.g. news text and headlines, social media posts, translated sentences,...)
68
+
69
+ #### Initial Data Collection and Normalization
70
+
71
+ Describe the data collection process. Describe any criteria for data selection or filtering. List any key words or search terms used. If possible, include runtime information for the collection process.
72
+
73
+ If data was collected from other pre-existing datasets, link to source here and to their [Hugging Face version](https://huggingface.co/datasets/dataset_name).
74
+
75
+ If the data was modified or normalized after being collected (e.g. if the data is word-tokenized), describe the process and the tools used.
76
+
77
+ #### Who are the source language producers?
78
+
79
+ State whether the data was produced by humans or machine generated. Describe the people or systems who originally created the data.
80
+
81
+ If available, include self-reported demographic or identity information for the source data creators, but avoid inferring this information. Instead state that this information is unknown. See [Larson 2017](https://www.aclweb.org/anthology/W17-1601.pdf) for using identity categories as a variables, particularly gender.
82
+
83
+ Describe the conditions under which the data was created (for example, if the producers were crowdworkers, state what platform was used, or if the data was found, what website the data was found on). If compensation was provided, include that information here.
84
+
85
+ Describe other people represented or mentioned in the data. Where possible, link to references for the information.
86
+
87
+ ### Annotations
88
+
89
+ If the dataset contains annotations which are not part of the initial data collection, describe them in the following paragraphs.
90
+
91
+ #### Annotation process
92
+
93
+ If applicable, describe the annotation process and any tools used, or state otherwise. Describe the amount of data annotated, if not all. Describe or reference annotation guidelines provided to the annotators. If available, provide interannotator statistics. Describe any annotation validation processes.
94
+
95
+ #### Who are the annotators?
96
+
97
+ If annotations were collected for the source data (such as class labels or syntactic parses), state whether the annotations were produced by humans or machine generated.
98
+
99
+ Describe the people or systems who originally created the annotations and their selection criteria if applicable.
100
+
101
+ If available, include self-reported demographic or identity information for the annotators, but avoid inferring this information. Instead state that this information is unknown. See [Larson 2017](https://www.aclweb.org/anthology/W17-1601.pdf) for using identity categories as a variables, particularly gender.
102
+
103
+ Describe the conditions under which the data was annotated (for example, if the annotators were crowdworkers, state what platform was used, or if the data was found, what website the data was found on). If compensation was provided, include that information here.
104
+
105
+ ### Personal and Sensitive Information
106
+
107
+ State whether the dataset uses identity categories and, if so, how the information is used. Describe where this information comes from (i.e. self-reporting, collecting from profiles, inferring, etc.). See [Larson 2017](https://www.aclweb.org/anthology/W17-1601.pdf) for using identity categories as a variables, particularly gender. State whether the data is linked to individuals and whether those individuals can be identified in the dataset, either directly or indirectly (i.e., in combination with other data).
108
+
109
+ State whether the dataset contains other data that might be considered sensitive (e.g., data that reveals racial or ethnic origins, sexual orientations, religious beliefs, political opinions or union memberships, or locations; financial or health data; biometric or genetic data; forms of government identification, such as social security numbers; criminal history).
110
+
111
+ If efforts were made to anonymize the data, describe the anonymization process.
112
+
113
+ ## Considerations for Using the Data
114
+
115
+ ### Social Impact of Dataset
116
+
117
+ Please discuss some of the ways you believe the use of this dataset will impact society.
118
+
119
+ The statement should include both positive outlooks, such as outlining how technologies developed through its use may improve people's lives, and discuss the accompanying risks. These risks may range from making important decisions more opaque to people who are affected by the technology, to reinforcing existing harmful biases (whose specifics should be discussed in the next section), among other considerations.
120
+
121
+ Also describe in this section if the proposed dataset contains a low-resource or under-represented language. If this is the case or if this task has any impact on underserved communities, please elaborate here.
122
+
123
+ ### Discussion of Biases
124
+
125
+ Provide descriptions of specific biases that are likely to be reflected in the data, and state whether any steps were taken to reduce their impact.
126
+
127
+ For Wikipedia text, see for example [Dinan et al 2020 on biases in Wikipedia (esp. Table 1)](https://arxiv.org/abs/2005.00614), or [Blodgett et al 2020](https://www.aclweb.org/anthology/2020.acl-main.485/) for a more general discussion of the topic.
128
+
129
+ If analyses have been run quantifying these biases, please add brief summaries and links to the studies here.
130
+
131
+ ### Other Known Limitations
132
+
133
+ If studies of the datasets have outlined other limitations of the dataset, such as annotation artifacts, please outline and cite them here.
134
+
135
+ ## Additional Information
136
+
137
+ ### Dataset Curators
138
+
139
+ List the people involved in collecting the dataset and their affiliation(s). If funding information is known, include it here.
140
+
141
+ ### Licensing Information
142
+
143
+ Provide the license and link to the license webpage if available.
144
+
145
+ ### Citation Information
146
+
147
+ Provide the [BibTex](http://www.bibtex.org/)-formatted reference for the dataset. For example:
148
+ ```
149
+ @article{article_id,
150
+ author = {Author List},
151
+ title = {Dataset Paper Title},
152
+ journal = {Publication Venue},
153
+ year = {2525}
154
+ }
155
+ ```
156
+
157
+ If the dataset has a [DOI](https://www.doi.org/), please provide it here.
158
+
159
+ ### Contributions
160
+
161
+ Thanks to [@lewtun](https://github.com/lewtun) for adding this dataset.
huggingface_dataset/Dataset_Card/malteos_test-ds.md ADDED
@@ -0,0 +1,139 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ annotations_creators: []
3
+ language_creators: []
4
+ language:
5
+ - en-US
6
+ license: []
7
+ multilinguality:
8
+ - monolingual
9
+ pretty_name: test ds
10
+ size_categories:
11
+ - unknown
12
+ source_datasets: []
13
+ task_categories:
14
+ - text-retrieval
15
+ task_ids: []
16
+ ---
17
+
18
+ # Dataset Card for [Dataset Name]
19
+
20
+ ## Table of Contents
21
+ - [Table of Contents](#table-of-contents)
22
+ - [Dataset Description](#dataset-description)
23
+ - [Dataset Summary](#dataset-summary)
24
+ - [Supported Tasks and Leaderboards](#supported-tasks-and-leaderboards)
25
+ - [Languages](#languages)
26
+ - [Dataset Structure](#dataset-structure)
27
+ - [Data Instances](#data-instances)
28
+ - [Data Fields](#data-fields)
29
+ - [Data Splits](#data-splits)
30
+ - [Dataset Creation](#dataset-creation)
31
+ - [Curation Rationale](#curation-rationale)
32
+ - [Source Data](#source-data)
33
+ - [Annotations](#annotations)
34
+ - [Personal and Sensitive Information](#personal-and-sensitive-information)
35
+ - [Considerations for Using the Data](#considerations-for-using-the-data)
36
+ - [Social Impact of Dataset](#social-impact-of-dataset)
37
+ - [Discussion of Biases](#discussion-of-biases)
38
+ - [Other Known Limitations](#other-known-limitations)
39
+ - [Additional Information](#additional-information)
40
+ - [Dataset Curators](#dataset-curators)
41
+ - [Licensing Information](#licensing-information)
42
+ - [Citation Information](#citation-information)
43
+ - [Contributions](#contributions)
44
+
45
+ ## Dataset Description
46
+
47
+ - **Homepage:**
48
+ - **Repository:**
49
+ - **Paper:**
50
+ - **Leaderboard:**
51
+ - **Point of Contact:**
52
+
53
+ ### Dataset Summary
54
+
55
+ [More Information Needed]
56
+
57
+ ### Supported Tasks and Leaderboards
58
+
59
+ [More Information Needed]
60
+
61
+ ### Languages
62
+
63
+ [More Information Needed]
64
+
65
+ ## Dataset Structure
66
+
67
+ ### Data Instances
68
+
69
+ [More Information Needed]
70
+
71
+ ### Data Fields
72
+
73
+ [More Information Needed]
74
+
75
+ ### Data Splits
76
+
77
+ [More Information Needed]
78
+
79
+ ## Dataset Creation
80
+
81
+ ### Curation Rationale
82
+
83
+ [More Information Needed]
84
+
85
+ ### Source Data
86
+
87
+ #### Initial Data Collection and Normalization
88
+
89
+ [More Information Needed]
90
+
91
+ #### Who are the source language producers?
92
+
93
+ [More Information Needed]
94
+
95
+ ### Annotations
96
+
97
+ #### Annotation process
98
+
99
+ [More Information Needed]
100
+
101
+ #### Who are the annotators?
102
+
103
+ [More Information Needed]
104
+
105
+ ### Personal and Sensitive Information
106
+
107
+ [More Information Needed]
108
+
109
+ ## Considerations for Using the Data
110
+
111
+ ### Social Impact of Dataset
112
+
113
+ [More Information Needed]
114
+
115
+ ### Discussion of Biases
116
+
117
+ [More Information Needed]
118
+
119
+ ### Other Known Limitations
120
+
121
+ [More Information Needed]
122
+
123
+ ## Additional Information
124
+
125
+ ### Dataset Curators
126
+
127
+ [More Information Needed]
128
+
129
+ ### Licensing Information
130
+
131
+ [More Information Needed]
132
+
133
+ ### Citation Information
134
+
135
+ [More Information Needed]
136
+
137
+ ### Contributions
138
+
139
+ Thanks to [@github-username](https://github.com/<github-username>) for adding this dataset.
huggingface_dataset/Dataset_Card/opus_elhuyar.md ADDED
@@ -0,0 +1,159 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ annotations_creators:
3
+ - found
4
+ language_creators:
5
+ - found
6
+ language:
7
+ - es
8
+ - eu
9
+ license:
10
+ - unknown
11
+ multilinguality:
12
+ - translation
13
+ size_categories:
14
+ - 100K<n<1M
15
+ source_datasets:
16
+ - original
17
+ task_categories:
18
+ - translation
19
+ task_ids: []
20
+ paperswithcode_id: null
21
+ pretty_name: OpusElhuyar
22
+ dataset_info:
23
+ features:
24
+ - name: translation
25
+ dtype:
26
+ translation:
27
+ languages:
28
+ - es
29
+ - eu
30
+ config_name: es-eu
31
+ splits:
32
+ - name: train
33
+ num_bytes: 127833939
34
+ num_examples: 642348
35
+ download_size: 44468751
36
+ dataset_size: 127833939
37
+ ---
38
+
39
+ # Dataset Card for [opus_elhuyar]
40
+
41
+ ## Table of Contents
42
+ - [Dataset Description](#dataset-description)
43
+ - [Dataset Summary](#dataset-summary)
44
+ - [Supported Tasks and Leaderboards](#supported-tasks-and-leaderboards)
45
+ - [Languages](#languages)
46
+ - [Dataset Structure](#dataset-structure)
47
+ - [Data Instances](#data-instances)
48
+ - [Data Fields](#data-fields)
49
+ - [Data Splits](#data-splits)
50
+ - [Dataset Creation](#dataset-creation)
51
+ - [Curation Rationale](#curation-rationale)
52
+ - [Source Data](#source-data)
53
+ - [Annotations](#annotations)
54
+ - [Personal and Sensitive Information](#personal-and-sensitive-information)
55
+ - [Considerations for Using the Data](#considerations-for-using-the-data)
56
+ - [Social Impact of Dataset](#social-impact-of-dataset)
57
+ - [Discussion of Biases](#discussion-of-biases)
58
+ - [Other Known Limitations](#other-known-limitations)
59
+ - [Additional Information](#additional-information)
60
+ - [Dataset Curators](#dataset-curators)
61
+ - [Licensing Information](#licensing-information)
62
+ - [Citation Information](#citation-information)
63
+ - [Contributions](#contributions)
64
+
65
+ ## Dataset Description
66
+
67
+ - **Homepage:**[Opus Elhuyar](http://opus.nlpl.eu/Elhuyar.php)
68
+ - **Repository:**
69
+ - **Paper:**
70
+ - **Leaderboard:**
71
+ - **Point of Contact:**
72
+
73
+ ### Dataset Summary
74
+
75
+ Dataset provided by the foundation Elhuyar (http://webcorpusak.elhuyar.eus/sarrera_paraleloa.html) and submitted to OPUS by Joseba Garcia Beaumont
76
+
77
+ ### Supported Tasks and Leaderboards
78
+
79
+ The underlying task is machine translation from Spanish to Basque
80
+
81
+ ### Languages
82
+
83
+ Spanish to Basque
84
+
85
+ ## Dataset Structure
86
+
87
+ ### Data Instances
88
+
89
+ [More Information Needed]
90
+
91
+ ### Data Fields
92
+
93
+ [More Information Needed]
94
+
95
+ ### Data Splits
96
+
97
+ [More Information Needed]
98
+
99
+ ## Dataset Creation
100
+
101
+ ### Curation Rationale
102
+
103
+ [More Information Needed]
104
+
105
+ ### Source Data
106
+
107
+ #### Initial Data Collection and Normalization
108
+
109
+ [More Information Needed]
110
+
111
+ #### Who are the source language producers?
112
+
113
+ [More Information Needed]
114
+
115
+ ### Annotations
116
+
117
+ #### Annotation process
118
+
119
+ [More Information Needed]
120
+
121
+ #### Who are the annotators?
122
+
123
+ [More Information Needed]
124
+
125
+ ### Personal and Sensitive Information
126
+
127
+ [More Information Needed]
128
+
129
+ ## Considerations for Using the Data
130
+
131
+ ### Social Impact of Dataset
132
+
133
+ [More Information Needed]
134
+
135
+ ### Discussion of Biases
136
+
137
+ [More Information Needed]
138
+
139
+ ### Other Known Limitations
140
+
141
+ [More Information Needed]
142
+
143
+ ## Additional Information
144
+
145
+ ### Dataset Curators
146
+
147
+ [More Information Needed]
148
+
149
+ ### Licensing Information
150
+
151
+ [More Information Needed]
152
+
153
+ ### Citation Information
154
+
155
+ J. Tiedemann, 2012, Parallel Data, Tools and Interfaces in OPUS. In Proceedings of the 8th International Conference on Language Resources and Evaluation (LREC 2012)
156
+
157
+ ### Contributions
158
+
159
+ Thanks to [@spatil6](https://github.com/spatil6) for adding this dataset.
huggingface_dataset/Dataset_Card/projecte-aina_UD_Catalan-AnCora.md ADDED
@@ -0,0 +1,176 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ YAML tags:
3
+
4
+ annotations_creators:
5
+ - expert-generated
6
+ language:
7
+ - ca
8
+ language_creators:
9
+ - found
10
+ license:
11
+ - cc-by-4.0
12
+ multilinguality:
13
+ - monolingual
14
+ pretty_name: UD_Catalan-AnCora
15
+ size_categories: []
16
+ source_datasets: []
17
+ tags: []
18
+ task_categories:
19
+ - token-classification
20
+ task_ids:
21
+ - part-of-speech
22
+
23
+ ---
24
+
25
+
26
+ # UD_Catalan-AnCora
27
+
28
+ ## Table of Contents
29
+ - [Table of Contents](#table-of-contents)
30
+ - [Dataset Description](#dataset-description)
31
+ - [Dataset Summary](#dataset-summary)
32
+ - [Supported Tasks and Leaderboards](#supported-tasks-and-leaderboards)
33
+ - [Languages](#languages)
34
+ - [Dataset Structure](#dataset-structure)
35
+ - [Data Instances](#data-instances)
36
+ - [Data Fields](#data-fields)
37
+ - [Data Splits](#data-splits)
38
+ - [Dataset Creation](#dataset-creation)
39
+ - [Curation Rationale](#curation-rationale)
40
+ - [Source Data](#source-data)
41
+ - [Annotations](#annotations)
42
+ - [Personal and Sensitive Information](#personal-and-sensitive-information)
43
+ - [Considerations for Using the Data](#considerations-for-using-the-data)
44
+ - [Social Impact of Dataset](#social-impact-of-dataset)
45
+ - [Discussion of Biases](#discussion-of-biases)
46
+ - [Other Known Limitations](#other-known-limitations)
47
+ - [Additional Information](#additional-information)
48
+ - [Dataset Curators](#dataset-curators)
49
+ - [Licensing Information](#licensing-information)
50
+ - [Citation Information](#citation-information)
51
+ - [Contributions](#contributions)
52
+
53
+
54
+ ## Dataset Description
55
+ - **Website:** https://github.com/UniversalDependencies/UD_Catalan-AnCora
56
+ - **Point of Contact:** [Daniel Zeman](zeman@ufal.mff.cuni.cz)
57
+
58
+
59
+ ### Dataset Summary
60
+
61
+ This dataset is composed of the annotations from the [AnCora corpus](http://clic.ub.edu/corpus/), projected on the [Universal Dependencies treebank](https://universaldependencies.org/). We use the POS annotations of this corpus as part of the [Catalan Language Understanding Benchmark (CLUB)](https://club.aina.bsc.es/).
62
+
63
+
64
+ ### Supported Tasks and Leaderboards
65
+
66
+ POS tagging
67
+
68
+ ### Languages
69
+
70
+ The dataset is in Catalan (`ca-CA`)
71
+
72
+ ## Dataset Structure
73
+
74
+ ### Data Instances
75
+
76
+ Three conllu files.
77
+
78
+ Annotations are encoded in plain text files (UTF-8, normalized to NFC, using only the LF character as line break, including an LF character at the end of file) with three types of lines:
79
+
80
+ 1) Word lines containing the annotation of a word/token in 10 fields separated by single tab characters (see below).
81
+ 2) Blank lines marking sentence boundaries.
82
+ 3) Comment lines starting with hash (#).
83
+
84
+ ### Data Fields
85
+ Word lines contain the following fields:
86
+
87
+ 1) ID: Word index, integer starting at 1 for each new sentence; may be a range for multiword tokens; may be a decimal number for empty nodes (decimal numbers can be lower than 1 but must be greater than 0).
88
+ 2) FORM: Word form or punctuation symbol.
89
+ 3) LEMMA: Lemma or stem of word form.
90
+ 4) UPOS: Universal part-of-speech tag.
91
+ 5) XPOS: Language-specific part-of-speech tag; underscore if not available.
92
+ 6) FEATS: List of morphological features from the universal feature inventory or from a defined language-specific extension; underscore if not available.
93
+ 7) HEAD: Head of the current word, which is either a value of ID or zero (0).
94
+ 8) DEPREL: Universal dependency relation to the HEAD (root iff HEAD = 0) or a defined language-specific subtype of one.
95
+ 9) DEPS: Enhanced dependency graph in the form of a list of head-deprel pairs.
96
+ 10) MISC: Any other annotation.
97
+
98
+ From: [https://universaldependencies.org](https://universaldependencies.org/guidelines.html)
99
+
100
+ ### Data Splits
101
+
102
+ - ca_ancora-ud-train.conllu
103
+ - ca_ancora-ud-dev.conllu
104
+ - ca_ancora-ud-test.conllu
105
+
106
+ ## Dataset Creation
107
+
108
+ ### Curation Rationale
109
+ [N/A]
110
+
111
+ ### Source Data
112
+
113
+ - [UD_Catalan-AnCora](https://github.com/UniversalDependencies/UD_Catalan-AnCora)
114
+
115
+ #### Initial Data Collection and Normalization
116
+
117
+ The original annotation was done in a constituency framework as a part of the [AnCora project](http://clic.ub.edu/corpus/) at the University of Barcelona. It was converted to dependencies by the [Universal Dependencies team](https://universaldependencies.org/) and used in the CoNLL 2009 shared task. The CoNLL 2009 version was later converted to HamleDT and to Universal Dependencies.
118
+
119
+ For more information on the AnCora project, visit the [AnCora site](http://clic.ub.edu/corpus/).
120
+
121
+ To learn about the Universal Dependences, visit the webpage [https://universaldependencies.org](https://universaldependencies.org)
122
+
123
+ #### Who are the source language producers?
124
+
125
+ For more information on the AnCora corpus and its sources, visit the [AnCora site](http://clic.ub.edu/corpus/).
126
+
127
+ ### Annotations
128
+
129
+ #### Annotation process
130
+
131
+ For more information on the first AnCora annotation, visit the [AnCora site](http://clic.ub.edu/corpus/).
132
+
133
+ #### Who are the annotators?
134
+
135
+ For more information on the AnCora annotation team, visit the [AnCora site](http://clic.ub.edu/corpus/).
136
+
137
+ ### Personal and Sensitive Information
138
+
139
+ No personal or sensitive information included.
140
+
141
+ ## Considerations for Using the Data
142
+
143
+ ### Social Impact of Dataset
144
+
145
+ This dataset contributes to the development of language models in Catalan, a low-resource language.
146
+
147
+ ### Discussion of Biases
148
+
149
+ [N/A]
150
+
151
+ ### Other Known Limitations
152
+
153
+ [N/A]
154
+
155
+ ## Additional Information
156
+
157
+ ### Dataset Curators
158
+
159
+
160
+
161
+ ### Licensing Information
162
+
163
+ This work is licensed under a <a rel="license" href="https://creativecommons.org/licenses/by/4.0/">CC Attribution 4.0 International License</a>.
164
+
165
+ ### Citation Information
166
+
167
+ The following paper must be cited when using this corpus:
168
+
169
+ Taulé, M., M.A. Martí, M. Recasens (2008) 'Ancora: Multilevel Annotated Corpora for Catalan and Spanish', Proceedings of 6th International Conference on Language Resources and Evaluation. Marrakesh (Morocco).
170
+
171
+ To cite the Universal Dependencies project:
172
+
173
+ Rueter, J. (Creator), Erina, O. (Contributor), Klementeva, J. (Contributor), Ryabov, I. (Contributor), Tyers, F. M. (Contributor), Zeman, D. (Contributor), Nivre, J. (Creator) (15 Nov 2020). Universal Dependencies version 2.7 Erzya JR. Universal Dependencies Consortium.
174
+
175
+
176
+
huggingface_dataset/Dataset_Card/shahules786_PoetryFoundationData.md ADDED
@@ -0,0 +1,28 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ dataset_info:
3
+ features:
4
+ - name: poem name
5
+ dtype: string
6
+ - name: content
7
+ dtype: string
8
+ - name: author
9
+ dtype: string
10
+ - name: type
11
+ dtype: string
12
+ - name: age
13
+ dtype: 'null'
14
+ splits:
15
+ - name: train
16
+ num_bytes: 23187576
17
+ num_examples: 13854
18
+ download_size: 14466446
19
+ dataset_size: 23187576
20
+ ---
21
+
22
+ This file contains nearly all poems from the [Poetry Foundation Website](https://www.poetryfoundation.org/).
23
+
24
+ Content
25
+ All poems have a title and author. Most poems are also labeled with the tags as available from the Poetry Foundation Website. The word cloud above shows the most used tags!
26
+
27
+ Inspiration
28
+ This dataset can be used for a variety of tasks related to poetry writing.
huggingface_dataset/Dataset_Card/wmt17.md ADDED
@@ -0,0 +1,360 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ annotations_creators:
3
+ - no-annotation
4
+ language_creators:
5
+ - found
6
+ language:
7
+ - cs
8
+ - de
9
+ - en
10
+ - fi
11
+ - lv
12
+ - ru
13
+ - tr
14
+ - zh
15
+ license:
16
+ - unknown
17
+ multilinguality:
18
+ - translation
19
+ size_categories:
20
+ - 10M<n<100M
21
+ source_datasets:
22
+ - extended|europarl_bilingual
23
+ - extended|news_commentary
24
+ - extended|setimes
25
+ - extended|un_multi
26
+ task_categories:
27
+ - translation
28
+ task_ids: []
29
+ pretty_name: WMT17
30
+ paperswithcode_id: null
31
+ dataset_info:
32
+ - config_name: cs-en
33
+ features:
34
+ - name: translation
35
+ dtype:
36
+ translation:
37
+ languages:
38
+ - cs
39
+ - en
40
+ splits:
41
+ - name: train
42
+ num_bytes: 300698431
43
+ num_examples: 1018291
44
+ - name: validation
45
+ num_bytes: 707870
46
+ num_examples: 2999
47
+ - name: test
48
+ num_bytes: 674430
49
+ num_examples: 3005
50
+ download_size: 1784240523
51
+ dataset_size: 302080731
52
+ - config_name: de-en
53
+ features:
54
+ - name: translation
55
+ dtype:
56
+ translation:
57
+ languages:
58
+ - de
59
+ - en
60
+ splits:
61
+ - name: train
62
+ num_bytes: 1715537443
63
+ num_examples: 5906184
64
+ - name: validation
65
+ num_bytes: 735516
66
+ num_examples: 2999
67
+ - name: test
68
+ num_bytes: 729519
69
+ num_examples: 3004
70
+ download_size: 1945382236
71
+ dataset_size: 1717002478
72
+ - config_name: fi-en
73
+ features:
74
+ - name: translation
75
+ dtype:
76
+ translation:
77
+ languages:
78
+ - fi
79
+ - en
80
+ splits:
81
+ - name: train
82
+ num_bytes: 743856525
83
+ num_examples: 2656542
84
+ - name: validation
85
+ num_bytes: 1410515
86
+ num_examples: 6000
87
+ - name: test
88
+ num_bytes: 1388828
89
+ num_examples: 6004
90
+ download_size: 434531933
91
+ dataset_size: 746655868
92
+ - config_name: lv-en
93
+ features:
94
+ - name: translation
95
+ dtype:
96
+ translation:
97
+ languages:
98
+ - lv
99
+ - en
100
+ splits:
101
+ - name: train
102
+ num_bytes: 517419100
103
+ num_examples: 3567528
104
+ - name: validation
105
+ num_bytes: 544604
106
+ num_examples: 2003
107
+ - name: test
108
+ num_bytes: 530474
109
+ num_examples: 2001
110
+ download_size: 169634544
111
+ dataset_size: 518494178
112
+ - config_name: ru-en
113
+ features:
114
+ - name: translation
115
+ dtype:
116
+ translation:
117
+ languages:
118
+ - ru
119
+ - en
120
+ splits:
121
+ - name: train
122
+ num_bytes: 11000075522
123
+ num_examples: 24782720
124
+ - name: validation
125
+ num_bytes: 1050677
126
+ num_examples: 2998
127
+ - name: test
128
+ num_bytes: 1040195
129
+ num_examples: 3001
130
+ download_size: 3582640660
131
+ dataset_size: 11002166394
132
+ - config_name: tr-en
133
+ features:
134
+ - name: translation
135
+ dtype:
136
+ translation:
137
+ languages:
138
+ - tr
139
+ - en
140
+ splits:
141
+ - name: train
142
+ num_bytes: 60416617
143
+ num_examples: 205756
144
+ - name: validation
145
+ num_bytes: 732436
146
+ num_examples: 3000
147
+ - name: test
148
+ num_bytes: 752773
149
+ num_examples: 3007
150
+ download_size: 62263061
151
+ dataset_size: 61901826
152
+ - config_name: zh-en
153
+ features:
154
+ - name: translation
155
+ dtype:
156
+ translation:
157
+ languages:
158
+ - zh
159
+ - en
160
+ splits:
161
+ - name: train
162
+ num_bytes: 5529286149
163
+ num_examples: 25134743
164
+ - name: validation
165
+ num_bytes: 589591
166
+ num_examples: 2002
167
+ - name: test
168
+ num_bytes: 540347
169
+ num_examples: 2001
170
+ download_size: 2314906945
171
+ dataset_size: 5530416087
172
+ ---
173
+
174
+ # Dataset Card for "wmt17"
175
+
176
+ ## Table of Contents
177
+ - [Dataset Description](#dataset-description)
178
+ - [Dataset Summary](#dataset-summary)
179
+ - [Supported Tasks and Leaderboards](#supported-tasks-and-leaderboards)
180
+ - [Languages](#languages)
181
+ - [Dataset Structure](#dataset-structure)
182
+ - [Data Instances](#data-instances)
183
+ - [Data Fields](#data-fields)
184
+ - [Data Splits](#data-splits)
185
+ - [Dataset Creation](#dataset-creation)
186
+ - [Curation Rationale](#curation-rationale)
187
+ - [Source Data](#source-data)
188
+ - [Annotations](#annotations)
189
+ - [Personal and Sensitive Information](#personal-and-sensitive-information)
190
+ - [Considerations for Using the Data](#considerations-for-using-the-data)
191
+ - [Social Impact of Dataset](#social-impact-of-dataset)
192
+ - [Discussion of Biases](#discussion-of-biases)
193
+ - [Other Known Limitations](#other-known-limitations)
194
+ - [Additional Information](#additional-information)
195
+ - [Dataset Curators](#dataset-curators)
196
+ - [Licensing Information](#licensing-information)
197
+ - [Citation Information](#citation-information)
198
+ - [Contributions](#contributions)
199
+
200
+ ## Dataset Description
201
+
202
+ - **Homepage:** [http://www.statmt.org/wmt17/translation-task.html](http://www.statmt.org/wmt17/translation-task.html)
203
+ - **Repository:** [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
204
+ - **Paper:** [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
205
+ - **Point of Contact:** [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
206
+ - **Size of downloaded dataset files:** 1700.58 MB
207
+ - **Size of the generated dataset:** 288.10 MB
208
+ - **Total amount of disk used:** 1988.68 MB
209
+
210
+ ### Dataset Summary
211
+
212
+ <div class="course-tip course-tip-orange bg-gradient-to-br dark:bg-gradient-to-r before:border-orange-500 dark:before:border-orange-800 from-orange-50 dark:from-gray-900 to-white dark:to-gray-950 border border-orange-50 text-orange-700 dark:text-gray-400">
213
+ <p><b>Warning:</b> There are issues with the Common Crawl corpus data (<a href="https://www.statmt.org/wmt13/training-parallel-commoncrawl.tgz">training-parallel-commoncrawl.tgz</a>):</p>
214
+ <ul>
215
+ <li>Non-English files contain many English sentences.</li>
216
+ <li>Their "parallel" sentences in English are not aligned: they are uncorrelated with their counterpart.</li>
217
+ </ul>
218
+ <p>We have contacted the WMT organizers.</p>
219
+ </div>
220
+
221
+ Translation dataset based on the data from statmt.org.
222
+
223
+ Versions exist for different years using a combination of data
224
+ sources. The base `wmt` allows you to create a custom dataset by choosing
225
+ your own data/language pair. This can be done as follows:
226
+
227
+ ```python
228
+ from datasets import inspect_dataset, load_dataset_builder
229
+
230
+ inspect_dataset("wmt17", "path/to/scripts")
231
+ builder = load_dataset_builder(
232
+ "path/to/scripts/wmt_utils.py",
233
+ language_pair=("fr", "de"),
234
+ subsets={
235
+ datasets.Split.TRAIN: ["commoncrawl_frde"],
236
+ datasets.Split.VALIDATION: ["euelections_dev2019"],
237
+ },
238
+ )
239
+
240
+ # Standard version
241
+ builder.download_and_prepare()
242
+ ds = builder.as_dataset()
243
+
244
+ # Streamable version
245
+ ds = builder.as_streaming_dataset()
246
+ ```
247
+
248
+ ### Supported Tasks and Leaderboards
249
+
250
+ [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
251
+
252
+ ### Languages
253
+
254
+ [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
255
+
256
+ ## Dataset Structure
257
+
258
+ ### Data Instances
259
+
260
+ #### cs-en
261
+
262
+ - **Size of downloaded dataset files:** 1700.58 MB
263
+ - **Size of the generated dataset:** 288.10 MB
264
+ - **Total amount of disk used:** 1988.68 MB
265
+
266
+ An example of 'train' looks as follows.
267
+ ```
268
+
269
+ ```
270
+
271
+ ### Data Fields
272
+
273
+ The data fields are the same among all splits.
274
+
275
+ #### cs-en
276
+ - `translation`: a multilingual `string` variable, with possible languages including `cs`, `en`.
277
+
278
+ ### Data Splits
279
+
280
+ |name | train |validation|test|
281
+ |-----|------:|---------:|---:|
282
+ |cs-en|1018291| 2999|3005|
283
+
284
+ ## Dataset Creation
285
+
286
+ ### Curation Rationale
287
+
288
+ [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
289
+
290
+ ### Source Data
291
+
292
+ #### Initial Data Collection and Normalization
293
+
294
+ [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
295
+
296
+ #### Who are the source language producers?
297
+
298
+ [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
299
+
300
+ ### Annotations
301
+
302
+ #### Annotation process
303
+
304
+ [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
305
+
306
+ #### Who are the annotators?
307
+
308
+ [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
309
+
310
+ ### Personal and Sensitive Information
311
+
312
+ [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
313
+
314
+ ## Considerations for Using the Data
315
+
316
+ ### Social Impact of Dataset
317
+
318
+ [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
319
+
320
+ ### Discussion of Biases
321
+
322
+ [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
323
+
324
+ ### Other Known Limitations
325
+
326
+ [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
327
+
328
+ ## Additional Information
329
+
330
+ ### Dataset Curators
331
+
332
+ [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
333
+
334
+ ### Licensing Information
335
+
336
+ [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
337
+
338
+ ### Citation Information
339
+
340
+ ```
341
+
342
+ @InProceedings{bojar-EtAl:2017:WMT1,
343
+ author = {Bojar, Ond
344
+ {r}ej and Chatterjee, Rajen and Federmann, Christian and Graham, Yvette and Haddow, Barry and Huang, Shujian and Huck, Matthias and Koehn, Philipp and Liu, Qun and Logacheva, Varvara and Monz, Christof and Negri, Matteo and Post, Matt and Rubino, Raphael and Specia, Lucia and Turchi, Marco},
345
+ title = {Findings of the 2017 Conference on Machine Translation (WMT17)},
346
+ booktitle = {Proceedings of the Second Conference on Machine Translation, Volume 2: Shared Task Papers},
347
+ month = {September},
348
+ year = {2017},
349
+ address = {Copenhagen, Denmark},
350
+ publisher = {Association for Computational Linguistics},
351
+ pages = {169--214},
352
+ url = {http://www.aclweb.org/anthology/W17-4717}
353
+ }
354
+
355
+ ```
356
+
357
+
358
+ ### Contributions
359
+
360
+ Thanks to [@patrickvonplaten](https://github.com/patrickvonplaten), [@thomwolf](https://github.com/thomwolf) for adding this dataset.