FlyPig23 commited on
Commit
753dd07
·
verified ·
1 Parent(s): 137421b

Upload batch 84 (20 files, last=huggingface_dataset/Dataset_Card/society-ethics_papers.md)

Browse files
Files changed (20) hide show
  1. huggingface_dataset/Dataset_Card/Bingsu_KcBERT_Pre-Training_Corpus.md +101 -0
  2. huggingface_dataset/Dataset_Card/Cohere_miracl-yo-corpus-22-12.md +152 -0
  3. huggingface_dataset/Dataset_Card/HuggingFaceM4_COCO.md +146 -0
  4. huggingface_dataset/Dataset_Card/PublicPrompts_Karsh.md +32 -0
  5. huggingface_dataset/Dataset_Card/autoevaluate_autoeval-eval-lener_br-lener_br-280a5d-1776961679.md +33 -0
  6. huggingface_dataset/Dataset_Card/autoevaluate_autoeval-staging-eval-launch__gov_report-plain_text-1abd3a-16146233.md +33 -0
  7. huggingface_dataset/Dataset_Card/autoevaluate_autoeval-staging-eval-project-b95cefb8-9695269.md +31 -0
  8. huggingface_dataset/Dataset_Card/eugenesiow_Set5.md +187 -0
  9. huggingface_dataset/Dataset_Card/hamnaanaa_Duckietown-Multiclass-Semantic-Segmentation-Dataset.md +49 -0
  10. huggingface_dataset/Dataset_Card/huggingartists_cocomelon.md +204 -0
  11. huggingface_dataset/Dataset_Card/huggingartists_mikhail-krug.md +204 -0
  12. huggingface_dataset/Dataset_Card/ipipan_nkjp1m.md +1284 -0
  13. huggingface_dataset/Dataset_Card/irds_beir_msmarco_test.md +63 -0
  14. huggingface_dataset/Dataset_Card/irds_mmarco_ru.md +46 -0
  15. huggingface_dataset/Dataset_Card/merkalo-ziri_qa_shreded.md +96 -0
  16. huggingface_dataset/Dataset_Card/qgallouedec_prj_gia_dataset_metaworld_pick_place_wall_v2_1111.md +36 -0
  17. huggingface_dataset/Dataset_Card/ro_sts.md +180 -0
  18. huggingface_dataset/Dataset_Card/society-ethics_papers.md +30 -0
  19. huggingface_dataset/Dataset_Card/tomekkorbak_pile-chunk-toxicity-scored-3.md +1 -0
  20. huggingface_dataset/Dataset_Card/trustwallet_24.md +4 -0
huggingface_dataset/Dataset_Card/Bingsu_KcBERT_Pre-Training_Corpus.md ADDED
@@ -0,0 +1,101 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ annotations_creators:
3
+ - no-annotation
4
+ language_creators:
5
+ - crowdsourced
6
+ language:
7
+ - ko
8
+ license:
9
+ - cc-by-sa-4.0
10
+ multilinguality:
11
+ - monolingual
12
+ pretty_name: KcBERT Pre-Training Corpus (Korean News Comments)
13
+ size_categories:
14
+ - 10M<n<100M
15
+ source_datasets:
16
+ - original
17
+ task_categories:
18
+ - fill-mask
19
+ - text-generation
20
+ task_ids:
21
+ - masked-language-modeling
22
+ - language-modeling
23
+ ---
24
+
25
+ # KcBERT Pre-Training Corpus (Korean News Comments)
26
+
27
+ ## Dataset Description
28
+
29
+ - **Homepage:** [KcBERT Pre-Training Corpus](https://www.kaggle.com/datasets/junbumlee/kcbert-pretraining-corpus-korean-news-comments)
30
+
31
+ - **Repository:** [Beomi/KcBERT](https://github.com/Beomi/KcBERT)
32
+
33
+ - **Paper:** [Needs More Information]
34
+
35
+ - **Leaderboard:** [Needs More Information]
36
+
37
+ - **Point of Contact:** [Needs More Information]
38
+
39
+
40
+ ## KcBERT
41
+ [beomi/kcbert-base](https://huggingface.co/beomi/kcbert-base)
42
+
43
+ Github KcBERT Repo: [https://github.com/Beomi/KcBERT](https://github.com/Beomi/KcBERT)
44
+ KcBERT is Korean Comments BERT pretrained on this Corpus set.
45
+ (You can use it via Huggingface's Transformers library!)
46
+
47
+ This Kaggle Dataset contains **CLEANED** dataset preprocessed with the code below.
48
+
49
+ ```python
50
+ import re
51
+ import emoji
52
+ from soynlp.normalizer import repeat_normalize
53
+
54
+ emojis = ''.join(emoji.UNICODE_EMOJI.keys())
55
+ pattern = re.compile(f'[^ .,?!/@$%~%·∼()\x00-\x7Fㄱ-힣{emojis}]+')
56
+ url_pattern = re.compile(
57
+ r'https?:\/\/(www\.)?[-a-zA-Z0-9@:%._\+~#=]{1,256}\.[a-zA-Z0-9()]{1,6}\b([-a-zA-Z0-9()@:%_\+.~#?&//=]*)')
58
+
59
+ def clean(x):
60
+ x = pattern.sub(' ', x)
61
+ x = url_pattern.sub('', x)
62
+ x = x.strip()
63
+ x = repeat_normalize(x, num_repeats=2)
64
+ return x
65
+ ```
66
+
67
+ ### License
68
+ [CC BY-SA 4.0](https://creativecommons.org/licenses/by-sa/4.0/)
69
+
70
+ ## Dataset Structure
71
+ ### Data Instance
72
+ ```pycon
73
+ >>> from datasets import load_dataset
74
+
75
+ >>> dataset = load_dataset("Bingsu/KcBERT_Pre-Training_Corpus")
76
+ >>> dataset
77
+ DatasetDict({
78
+ train: Dataset({
79
+ features: ['text'],
80
+ num_rows: 86246285
81
+ })
82
+ })
83
+ ```
84
+
85
+ ### Data Size
86
+
87
+ download: 7.90 GiB<br>
88
+ generated: 11.86 GiB<br>
89
+ total: 19.76 GiB
90
+
91
+ ※ You can download this dataset from [kaggle](https://www.kaggle.com/datasets/junbumlee/kcbert-pretraining-corpus-korean-news-comments), and it's 5 GiB. (12.48 GiB when uncompressed)
92
+
93
+ ### Data Fields
94
+
95
+ - text: `string`
96
+
97
+ ### Data Splits
98
+
99
+ | | train |
100
+ | ---------- | -------- |
101
+ | # of texts | 86246285 |
huggingface_dataset/Dataset_Card/Cohere_miracl-yo-corpus-22-12.md ADDED
@@ -0,0 +1,152 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ annotations_creators:
3
+ - expert-generated
4
+
5
+ language:
6
+ - yo
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 (yo) 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-yo-queries-22-12](https://huggingface.co/datasets/Cohere/miracl-yo-queries-22-12) and the corpus embeddings can be found in [Cohere/miracl-yo-corpus-22-12](https://huggingface.co/datasets/Cohere/miracl-yo-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-yo-corpus-22-12](https://huggingface.co/datasets/Cohere/miracl-yo-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-yo-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-yo-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-yo-queries-22-12](https://huggingface.co/datasets/Cohere/miracl-yo-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-yo-corpus-22-12", split="train")
85
+ doc_embeddings = torch.tensor(docs['emb'])
86
+
87
+ # Load queries
88
+ queries = load_dataset(f"Cohere/miracl-yo-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/HuggingFaceM4_COCO.md ADDED
@@ -0,0 +1,146 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: cc-by-4.0
3
+ ---
4
+
5
+ # Dataset Card for [Dataset Name]
6
+
7
+ ## Table of Contents
8
+ - [Table of Contents](#table-of-contents)
9
+ - [Dataset Description](#dataset-description)
10
+ - [Dataset Summary](#dataset-summary)
11
+ - [Supported Tasks and Leaderboards](#supported-tasks-and-leaderboards)
12
+ - [Languages](#languages)
13
+ - [Dataset Structure](#dataset-structure)
14
+ - [Data Instances](#data-instances)
15
+ - [Data Fields](#data-fields)
16
+ - [Data Splits](#data-splits)
17
+ - [Dataset Creation](#dataset-creation)
18
+ - [Curation Rationale](#curation-rationale)
19
+ - [Source Data](#source-data)
20
+ - [Annotations](#annotations)
21
+ - [Personal and Sensitive Information](#personal-and-sensitive-information)
22
+ - [Considerations for Using the Data](#considerations-for-using-the-data)
23
+ - [Social Impact of Dataset](#social-impact-of-dataset)
24
+ - [Discussion of Biases](#discussion-of-biases)
25
+ - [Other Known Limitations](#other-known-limitations)
26
+ - [Additional Information](#additional-information)
27
+ - [Dataset Curators](#dataset-curators)
28
+ - [Licensing Information](#licensing-information)
29
+ - [Citation Information](#citation-information)
30
+ - [Contributions](#contributions)
31
+
32
+ ## Dataset Description
33
+
34
+ - **Homepage:** [https://cocodataset.org/](https://cocodataset.org/)
35
+ - **Repository:**
36
+ - **Paper:** [Microsoft COCO: Common Objects in Context](https://arxiv.org/abs/1405.0312)
37
+ - **Leaderboard:**
38
+ - **Point of Contact:**
39
+
40
+ ### Dataset Summary
41
+
42
+ MS COCO is a large-scale object detection, segmentation, and captioning dataset.
43
+ COCO has several features: Object segmentation, Recognition in context, Superpixel stuff segmentation, 330K images (>200K labeled), 1.5 million object instances, 80 object categories, 91 stuff categories, 5 captions per image, 250,000 people with keypoints.
44
+
45
+ As of now, there is only the 2014 subset (with Karpathy annotations and splits), but feel free to contribute the 2017 subset of COCO!
46
+
47
+ ### Supported Tasks and Leaderboards
48
+
49
+ [More Information Needed]
50
+
51
+ ### Languages
52
+
53
+ [More Information Needed]
54
+
55
+ ## Dataset Structure
56
+
57
+ ### Data Instances
58
+
59
+ Each instance has the following structure:
60
+ ```
61
+ {
62
+ 'image': <PIL.JpegImagePlugin.JpegImageFile image mode=RGB size=640x480 at 0x7F69C1BA8550>,
63
+ 'filepath': 'COCO_val2014_000000522418.jpg',
64
+ 'sentids': [681330, 686718, 688839, 693159, 693204],
65
+ 'filename': 'COCO_val2014_000000522418.jpg',
66
+ 'imgid': 1,
67
+ 'split': 'restval',
68
+ 'sentences': {
69
+ 'tokens': ['a', 'woman', 'wearing', 'a', 'net', 'on', 'her', 'head', 'cutting', 'a', 'cake'],
70
+ 'raw': 'A woman wearing a net on her head cutting a cake. ',
71
+ 'imgid': 1,
72
+ 'sentid': 681330
73
+ },
74
+ 'cocoid': 522418
75
+ }
76
+ ```
77
+
78
+ ### Data Fields
79
+
80
+ [More Information Needed]
81
+
82
+ ### Data Splits
83
+
84
+ [More Information Needed]
85
+
86
+ ## Dataset Creation
87
+
88
+ ### Curation Rationale
89
+
90
+ [More Information Needed]
91
+
92
+ ### Source Data
93
+
94
+ #### Initial Data Collection and Normalization
95
+
96
+ [More Information Needed]
97
+
98
+ #### Who are the source language producers?
99
+
100
+ [More Information Needed]
101
+
102
+ ### Annotations
103
+
104
+ #### Annotation process
105
+
106
+ [More Information Needed]
107
+
108
+ #### Who are the annotators?
109
+
110
+ [More Information Needed]
111
+
112
+ ### Personal and Sensitive Information
113
+
114
+ [More Information Needed]
115
+
116
+ ## Considerations for Using the Data
117
+
118
+ ### Social Impact of Dataset
119
+
120
+ [More Information Needed]
121
+
122
+ ### Discussion of Biases
123
+
124
+ [More Information Needed]
125
+
126
+ ### Other Known Limitations
127
+
128
+ [More Information Needed]
129
+
130
+ ## Additional Information
131
+
132
+ ### Dataset Curators
133
+
134
+ [More Information Needed]
135
+
136
+ ### Licensing Information
137
+
138
+ [More Information Needed]
139
+
140
+ ### Citation Information
141
+
142
+ [More Information Needed]
143
+
144
+ ### Contributions
145
+
146
+ Thanks to [@VictorSanh](https://github.com/VictorSanh) for adding this dataset.
huggingface_dataset/Dataset_Card/PublicPrompts_Karsh.md ADDED
@@ -0,0 +1,32 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: openrail++
3
+ ---
4
+ Textual Inversion embedding to create portraits in the style of the most famous portrait photographer ever, "Yousuf Karsh"
5
+ Trigger word is "karsh"
6
+
7
+
8
+ Example images generated with this prompt template: portrait photo of "character", highly detailed, by karsh
9
+
10
+
11
+ ![05898-3647817921-portrait photo of The joker, highly detailed, by karsh.png](https://s3.amazonaws.com/moonup/production/uploads/1669663304101-63507e5e18a4f616c9dfba19.png)
12
+
13
+ ![05793-3428311090-portrait photo of wonder woman, by karsh.png](https://s3.amazonaws.com/moonup/production/uploads/1669663318736-63507e5e18a4f616c9dfba19.png)
14
+
15
+ ![05921-3536412260-portrait photo of harley quinn, highly detailed, by karsh.png](https://s3.amazonaws.com/moonup/production/uploads/1669663375997-63507e5e18a4f616c9dfba19.png)
16
+
17
+ ![05941-2474898187-portrait photo of Han solo, highly detailed, by karsh.png](https://s3.amazonaws.com/moonup/production/uploads/1669663376996-63507e5e18a4f616c9dfba19.png)
18
+
19
+ ![05960-3239527709-portrait photo of Yoda, highly detailed, by karsh.png](https://s3.amazonaws.com/moonup/production/uploads/1669663377978-63507e5e18a4f616c9dfba19.png)
20
+
21
+ ![05790-1118996825-portrait photo of Harley Quinn, by karsh.png](https://s3.amazonaws.com/moonup/production/uploads/1669663368112-63507e5e18a4f616c9dfba19.png)
22
+
23
+ ![05826-790578085-portrait photo of Sonic the hedgehog, highly detailed, by karsh.png](https://s3.amazonaws.com/moonup/production/uploads/1669663378683-63507e5e18a4f616c9dfba19.png)
24
+
25
+ ![05834-879254331-portrait photo of pikachu, highly detailed, by karsh.png](https://s3.amazonaws.com/moonup/production/uploads/1669663376663-63507e5e18a4f616c9dfba19.png)
26
+
27
+ ![05840-2710542385-portrait photo of indiana jones, highly detailed, by karsh.png](https://s3.amazonaws.com/moonup/production/uploads/1669663377666-63507e5e18a4f616c9dfba19.png)
28
+
29
+ ![05875-2065006831-portrait photo of master chief, highly detailed, by karsh.png](https://s3.amazonaws.com/moonup/production/uploads/1669663379060-63507e5e18a4f616c9dfba19.png)
30
+
31
+
32
+
huggingface_dataset/Dataset_Card/autoevaluate_autoeval-eval-lener_br-lener_br-280a5d-1776961679.md ADDED
@@ -0,0 +1,33 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ type: predictions
3
+ tags:
4
+ - autotrain
5
+ - evaluation
6
+ datasets:
7
+ - lener_br
8
+ eval_info:
9
+ task: entity_extraction
10
+ model: pierreguillou/ner-bert-large-cased-pt-lenerbr
11
+ metrics: []
12
+ dataset_name: lener_br
13
+ dataset_config: lener_br
14
+ dataset_split: test
15
+ col_mapping:
16
+ tokens: tokens
17
+ tags: ner_tags
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: Token Classification
24
+ * Model: pierreguillou/ner-bert-large-cased-pt-lenerbr
25
+ * Dataset: lener_br
26
+ * Config: lener_br
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 [@Luciano](https://huggingface.co/Luciano) for evaluating this model.
huggingface_dataset/Dataset_Card/autoevaluate_autoeval-staging-eval-launch__gov_report-plain_text-1abd3a-16146233.md ADDED
@@ -0,0 +1,33 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ type: predictions
3
+ tags:
4
+ - autotrain
5
+ - evaluation
6
+ datasets:
7
+ - launch/gov_report
8
+ eval_info:
9
+ task: summarization
10
+ model: google/bigbird-pegasus-large-pubmed
11
+ metrics: ['bertscore']
12
+ dataset_name: launch/gov_report
13
+ dataset_config: plain_text
14
+ dataset_split: test
15
+ col_mapping:
16
+ text: document
17
+ target: summary
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-pubmed
25
+ * Dataset: launch/gov_report
26
+ * Config: plain_text
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 [@nonchalant-nagavalli](https://huggingface.co/nonchalant-nagavalli) for evaluating this model.
huggingface_dataset/Dataset_Card/autoevaluate_autoeval-staging-eval-project-b95cefb8-9695269.md ADDED
@@ -0,0 +1,31 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ type: predictions
3
+ tags:
4
+ - autotrain
5
+ - evaluation
6
+ datasets:
7
+ - tals/vitaminc
8
+ eval_info:
9
+ task: multi_class_classification
10
+ model: tals/albert-base-vitaminc
11
+ metrics: []
12
+ dataset_name: tals/vitaminc
13
+ dataset_config: tals--vitaminc
14
+ dataset_split: test
15
+ col_mapping:
16
+ text: claim
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: tals/albert-base-vitaminc
25
+ * Dataset: tals/vitaminc
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 [@SalimHF](https://huggingface.co/SalimHF) for evaluating this model.
huggingface_dataset/Dataset_Card/eugenesiow_Set5.md ADDED
@@ -0,0 +1,187 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ annotations_creators:
3
+ - machine-generated
4
+ language_creators:
5
+ - found
6
+ language: []
7
+ license:
8
+ - other
9
+ multilinguality:
10
+ - monolingual
11
+ size_categories:
12
+ - unknown
13
+ source_datasets:
14
+ - original
15
+ task_categories:
16
+ - other
17
+ task_ids: []
18
+ pretty_name: Set5
19
+ tags:
20
+ - other-image-super-resolution
21
+ ---
22
+
23
+ # Dataset Card for Set5
24
+
25
+ ## Table of Contents
26
+ - [Table of Contents](#table-of-contents)
27
+ - [Dataset Description](#dataset-description)
28
+ - [Dataset Summary](#dataset-summary)
29
+ - [Supported Tasks and Leaderboards](#supported-tasks-and-leaderboards)
30
+ - [Languages](#languages)
31
+ - [Dataset Structure](#dataset-structure)
32
+ - [Data Instances](#data-instances)
33
+ - [Data Fields](#data-fields)
34
+ - [Data Splits](#data-splits)
35
+ - [Dataset Creation](#dataset-creation)
36
+ - [Curation Rationale](#curation-rationale)
37
+ - [Source Data](#source-data)
38
+ - [Annotations](#annotations)
39
+ - [Personal and Sensitive Information](#personal-and-sensitive-information)
40
+ - [Considerations for Using the Data](#considerations-for-using-the-data)
41
+ - [Social Impact of Dataset](#social-impact-of-dataset)
42
+ - [Discussion of Biases](#discussion-of-biases)
43
+ - [Other Known Limitations](#other-known-limitations)
44
+ - [Additional Information](#additional-information)
45
+ - [Dataset Curators](#dataset-curators)
46
+ - [Licensing Information](#licensing-information)
47
+ - [Citation Information](#citation-information)
48
+ - [Contributions](#contributions)
49
+
50
+ ## Dataset Description
51
+
52
+ - **Homepage**: http://people.rennes.inria.fr/Aline.Roumy/results/SR_BMVC12.html
53
+ - **Repository**: https://huggingface.co/datasets/eugenesiow/Set5
54
+ - **Paper**: http://people.rennes.inria.fr/Aline.Roumy/publi/12bmvc_Bevilacqua_lowComplexitySR.pdf
55
+ - **Leaderboard**: https://github.com/eugenesiow/super-image#scale-x2
56
+
57
+ ### Dataset Summary
58
+
59
+ Set5 is a evaluation dataset with 5 RGB images for the image super resolution task. The 5 images of the dataset are (“baby”, “bird”, “butterfly”, “head”, “woman”).
60
+
61
+ Install with `pip`:
62
+ ```bash
63
+ pip install datasets super-image
64
+ ```
65
+
66
+ Evaluate a model with the [`super-image`](https://github.com/eugenesiow/super-image) library:
67
+ ```python
68
+ from datasets import load_dataset
69
+ from super_image import EdsrModel
70
+ from super_image.data import EvalDataset, EvalMetrics
71
+
72
+ dataset = load_dataset('eugenesiow/Set5', 'bicubic_x2', split='validation')
73
+ eval_dataset = EvalDataset(dataset)
74
+ model = EdsrModel.from_pretrained('eugenesiow/edsr-base', scale=2)
75
+ EvalMetrics().evaluate(model, eval_dataset)
76
+ ```
77
+
78
+ ### Supported Tasks and Leaderboards
79
+
80
+ The dataset is commonly used for evaluation of the `image-super-resolution` task.
81
+
82
+ Unofficial [`super-image`](https://github.com/eugenesiow/super-image) leaderboard for:
83
+ - [Scale 2](https://github.com/eugenesiow/super-image#scale-x2)
84
+ - [Scale 3](https://github.com/eugenesiow/super-image#scale-x3)
85
+ - [Scale 4](https://github.com/eugenesiow/super-image#scale-x4)
86
+ - [Scale 8](https://github.com/eugenesiow/super-image#scale-x8)
87
+
88
+ ### Languages
89
+
90
+ Not applicable.
91
+
92
+ ## Dataset Structure
93
+
94
+ ### Data Instances
95
+
96
+ An example of `validation` for `bicubic_x2` looks as follows.
97
+ ```
98
+ {
99
+ "hr": "/.cache/huggingface/datasets/downloads/extracted/Set5_HR/baby.png",
100
+ "lr": "/.cache/huggingface/datasets/downloads/extracted/Set5_LR_x2/baby.png"
101
+ }
102
+ ```
103
+
104
+ ### Data Fields
105
+
106
+ The data fields are the same among all splits.
107
+
108
+ - `hr`: a `string` to the path of the High Resolution (HR) `.png` image.
109
+ - `lr`: a `string` to the path of the Low Resolution (LR) `.png` image.
110
+
111
+ ### Data Splits
112
+
113
+ | name |validation|
114
+ |-------|---:|
115
+ |bicubic_x2|5|
116
+ |bicubic_x3|5|
117
+ |bicubic_x4|5|
118
+
119
+
120
+ ## Dataset Creation
121
+
122
+ ### Curation Rationale
123
+
124
+ [More Information Needed]
125
+
126
+ ### Source Data
127
+
128
+ #### Initial Data Collection and Normalization
129
+
130
+ [More Information Needed]
131
+
132
+ #### Who are the source language producers?
133
+
134
+ [More Information Needed]
135
+
136
+ ### Annotations
137
+
138
+ #### Annotation process
139
+
140
+ No annotations.
141
+
142
+ #### Who are the annotators?
143
+
144
+ No annotators.
145
+
146
+ ### Personal and Sensitive Information
147
+
148
+ [More Information Needed]
149
+
150
+ ## Considerations for Using the Data
151
+
152
+ ### Social Impact of Dataset
153
+
154
+ [More Information Needed]
155
+
156
+ ### Discussion of Biases
157
+
158
+ [More Information Needed]
159
+
160
+ ### Other Known Limitations
161
+
162
+ [More Information Needed]
163
+
164
+ ## Additional Information
165
+
166
+ ### Dataset Curators
167
+
168
+ - **Original Authors**: [Bevilacqua et al.](http://people.rennes.inria.fr/Aline.Roumy/results/SR_BMVC12.html)
169
+
170
+ ### Licensing Information
171
+
172
+ Academic use only.
173
+
174
+ ### Citation Information
175
+
176
+ ```bibtex
177
+ @article{bevilacqua2012low,
178
+ title={Low-complexity single-image super-resolution based on nonnegative neighbor embedding},
179
+ author={Bevilacqua, Marco and Roumy, Aline and Guillemot, Christine and Alberi-Morel, Marie Line},
180
+ year={2012},
181
+ publisher={BMVA press}
182
+ }
183
+ ```
184
+
185
+ ### Contributions
186
+
187
+ Thanks to [@eugenesiow](https://github.com/eugenesiow) for adding this dataset.
huggingface_dataset/Dataset_Card/hamnaanaa_Duckietown-Multiclass-Semantic-Segmentation-Dataset.md ADDED
@@ -0,0 +1,49 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: openrail
3
+ task_categories:
4
+ - image-segmentation
5
+ tags:
6
+ - Duckietown
7
+ - Lane Following
8
+ - Autonomous Driving
9
+ pretty_name: Duckietown Multiclass Semantic Segmentation Dataset
10
+ size_categories:
11
+ - n<1K
12
+ ---
13
+
14
+ # Multiclass Semantic Segmentation Duckietown Dataset
15
+ A dataset of multiclass semantic segmentation image annotations for the first 250 images of the ["Duckietown Object Detection Dataset"](https://docs.duckietown.org/daffy/AIDO/out/object_detection_dataset.html).
16
+
17
+ | Raw Image | Segmentated Image |
18
+ | --- | --- |
19
+ | <img width="915" alt="raw_image" src="https://user-images.githubusercontent.com/42655977/211690204-301193c3-a651-4a3a-bd66-6458cf3a8778.png"> | <img width="915" alt="segmentation_mask" src="https://user-images.githubusercontent.com/42655977/211690212-2c9ca63a-f3ae-4d65-a4e0-ea76b20a616f.png"> |
20
+
21
+ # Semantic Classes
22
+
23
+ This dataset defines 8 semantic classes (7 distinct classes + implicit background class):
24
+ | Class | XML Label | Description | Color (RGB) |
25
+ | --- | --- | --- | --- |
26
+ | Ego Lane | `Ego Lane` | The lane the agent is supposed to be driving in (default right-hand traffic assumed) | `[102,255,102]` |
27
+ | Opposite Lane | `Opposite Lane` | The lane opposite to the one the agent is supposed to be driving in (default right-hand traffic assumed) | `[245,147,49]` |
28
+ | Road End | `Road End` | Perpendicular red indicator found in Duckietown indicating the end of the road or the beginning of an intersection | `[184,61,245]` |
29
+ | Intersection | `Intersection` | Road tile with no lane markings that has either 3 (T-intersection) or 4 (X-intersection) adjacent road tiles | `[50,183,250]` |
30
+ | Middle Lane | `Middle Lane` | Broken yellow lane in the middle of the road separating lanes | `[255,255,0]` |
31
+ | Side Lane | `Side Lane` | Solid white lane marking the road boundary | `[255,255,255]` |
32
+ | Background | `Background` | Unclassified | - (implicit class) |
33
+
34
+ ### **Notice**:
35
+
36
+ (1) The color assignment is purely a suggestion as the color information encoded in the annotation file is not used by the `cvat_preprocessor.py` and can therefore be overwritten by any other mapping. The specified color mapping is mentioned here for explanatory and consistency reasons as this mapping is used in `dataloader.py` (see [Usage](#usage) for more information).
37
+
38
+ (2) `[Ego Lane, Opposite Lane, Intersection]` are three semantic classes for essentially the same road tiles - the three classes were added to introduce more information for some use cases. Keep in mind, that some semantic segmentation neural network have a hard time learning the difference between these classes, leading to a poor performance on detecting these classes. In such case, treating these three classes as one *"Road"* class helps improving the segmentation performance.
39
+
40
+ (3) The `Middle Lane` and `Side Lane` classes were added later and thus only the first 125 images were annotated. If you want to use these, use the `segmentation_annotation.xml` annotation file. Otherwise, `segmentation_annotation_old.xml` stores 250 images (including the 125 images from the other annotation file) but without these two classes.
41
+
42
+ (4) `Background` is a special semantic class as it is not stored in the annotation file. This class is assigned to all pixels that don't have any other class (see `dataloader.py` for a reference solution for that).
43
+
44
+ # Usage
45
+ [](#usage)
46
+
47
+ Due to the rather large size of the original dataset *(~750MB)*, this repository only contains annotations file stored in `CVAT for Images 1.1` format as well as two python files:
48
+ - `cvat_preprocessor.py`: A collection of helper functions to read the annotations file and extract the annotation masks stored as polygons.
49
+ - `dataloader.py`: A [_PyTorch_](https://pytorch.org)-specific example implementation of a wrapper-dataset to use with PyTorch machine learning models.
huggingface_dataset/Dataset_Card/huggingartists_cocomelon.md ADDED
@@ -0,0 +1,204 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ language:
3
+ - en
4
+ tags:
5
+ - huggingartists
6
+ - lyrics
7
+ ---
8
+
9
+ # Dataset Card for "huggingartists/cocomelon"
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.084755 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/a6115c556163f271124bacf8a07db45d.499x499x1.png&#39;)">
47
+ </div>
48
+ </div>
49
+ <a href="https://huggingface.co/huggingartists/cocomelon">
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">Cocomelon</div>
53
+ <a href="https://genius.com/artists/cocomelon">
54
+ <div style="text-align: center; font-size: 14px;">@cocomelon</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/cocomelon).
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/cocomelon")
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
+ |53| -| -|
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/cocomelon")
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/huggingartists_mikhail-krug.md ADDED
@@ -0,0 +1,204 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ language:
3
+ - en
4
+ tags:
5
+ - huggingartists
6
+ - lyrics
7
+ ---
8
+
9
+ # Dataset Card for "huggingartists/mikhail-krug"
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.051644 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/510c736f2e8270a8e8ddbd62ab75d943.466x466x1.jpg&#39;)">
47
+ </div>
48
+ </div>
49
+ <a href="https://huggingface.co/huggingartists/mikhail-krug">
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">Михаил Круг (Mikhail Krug)</div>
53
+ <a href="https://genius.com/artists/mikhail-krug">
54
+ <div style="text-align: center; font-size: 14px;">@mikhail-krug</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/mikhail-krug).
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/mikhail-krug")
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
+ |13| -| -|
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/mikhail-krug")
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/ipipan_nkjp1m.md ADDED
@@ -0,0 +1,1284 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ annotations_creators:
3
+ - expert-generated
4
+ language:
5
+ - pl
6
+ language_creators:
7
+ - expert-generated
8
+ license:
9
+ - cc-by-4.0
10
+ multilinguality:
11
+ - monolingual
12
+ pretty_name: NKJP1M
13
+ size_categories:
14
+ - 10K<n<100K
15
+ source_datasets:
16
+ - original
17
+ tags:
18
+ - National Corpus of Polish
19
+ - Narodowy Korpus Języka Polskiego
20
+ task_categories:
21
+ - token-classification
22
+ task_ids:
23
+ - part-of-speech
24
+ - lemmatization
25
+ dataset_info:
26
+ features:
27
+ - name: nkjp_text
28
+ dtype: string
29
+ - name: nkjp_par
30
+ dtype: string
31
+ - name: nkjp_sent
32
+ dtype: string
33
+ - name: tokens
34
+ sequence: string
35
+ - name: lemmas
36
+ sequence: string
37
+ - name: cposes
38
+ sequence:
39
+ class_label:
40
+ names:
41
+ 0: A
42
+ 1: Adv
43
+ 2: Comp
44
+ 3: Conj
45
+ 4: Dig
46
+ 5: Interj
47
+ 6: N
48
+ 7: Num
49
+ 8: Part
50
+ 9: Prep
51
+ 10: Punct
52
+ 11: V
53
+ 12: X
54
+ - name: poses
55
+ sequence:
56
+ class_label:
57
+ names:
58
+ 0: adj
59
+ 1: adja
60
+ 2: adjc
61
+ 3: adjp
62
+ 4: adv
63
+ 5: aglt
64
+ 6: bedzie
65
+ 7: brev
66
+ 8: comp
67
+ 9: conj
68
+ 10: depr
69
+ 11: dig
70
+ 12: fin
71
+ 13: frag
72
+ 14: ger
73
+ 15: imps
74
+ 16: impt
75
+ 17: inf
76
+ 18: interj
77
+ 19: interp
78
+ 20: num
79
+ 21: numcomp
80
+ 22: pact
81
+ 23: pacta
82
+ 24: pant
83
+ 25: part
84
+ 26: pcon
85
+ 27: ppas
86
+ 28: ppron12
87
+ 29: ppron3
88
+ 30: praet
89
+ 31: pred
90
+ 32: prep
91
+ 33: romandig
92
+ 34: siebie
93
+ 35: subst
94
+ 36: sym
95
+ 37: winien
96
+ 38: xxs
97
+ 39: xxx
98
+ - name: tags
99
+ sequence:
100
+ class_label:
101
+ names:
102
+ 0: adj:pl:acc:f:com
103
+ 1: adj:pl:acc:f:pos
104
+ 2: adj:pl:acc:f:sup
105
+ 3: adj:pl:acc:m1:com
106
+ 4: adj:pl:acc:m1:pos
107
+ 5: adj:pl:acc:m1:sup
108
+ 6: adj:pl:acc:m2:com
109
+ 7: adj:pl:acc:m2:pos
110
+ 8: adj:pl:acc:m2:sup
111
+ 9: adj:pl:acc:m3:com
112
+ 10: adj:pl:acc:m3:pos
113
+ 11: adj:pl:acc:m3:sup
114
+ 12: adj:pl:acc:n:com
115
+ 13: adj:pl:acc:n:pos
116
+ 14: adj:pl:acc:n:sup
117
+ 15: adj:pl:dat:f:com
118
+ 16: adj:pl:dat:f:pos
119
+ 17: adj:pl:dat:f:sup
120
+ 18: adj:pl:dat:m1:com
121
+ 19: adj:pl:dat:m1:pos
122
+ 20: adj:pl:dat:m1:sup
123
+ 21: adj:pl:dat:m2:pos
124
+ 22: adj:pl:dat:m3:com
125
+ 23: adj:pl:dat:m3:pos
126
+ 24: adj:pl:dat:n:pos
127
+ 25: adj:pl:dat:n:sup
128
+ 26: adj:pl:gen:f:com
129
+ 27: adj:pl:gen:f:pos
130
+ 28: adj:pl:gen:f:sup
131
+ 29: adj:pl:gen:m1:com
132
+ 30: adj:pl:gen:m1:pos
133
+ 31: adj:pl:gen:m1:sup
134
+ 32: adj:pl:gen:m2:com
135
+ 33: adj:pl:gen:m2:pos
136
+ 34: adj:pl:gen:m2:sup
137
+ 35: adj:pl:gen:m3:com
138
+ 36: adj:pl:gen:m3:pos
139
+ 37: adj:pl:gen:m3:sup
140
+ 38: adj:pl:gen:n:com
141
+ 39: adj:pl:gen:n:pos
142
+ 40: adj:pl:gen:n:sup
143
+ 41: adj:pl:inst:f:com
144
+ 42: adj:pl:inst:f:pos
145
+ 43: adj:pl:inst:f:sup
146
+ 44: adj:pl:inst:m1:com
147
+ 45: adj:pl:inst:m1:pos
148
+ 46: adj:pl:inst:m1:sup
149
+ 47: adj:pl:inst:m2:pos
150
+ 48: adj:pl:inst:m3:com
151
+ 49: adj:pl:inst:m3:pos
152
+ 50: adj:pl:inst:m3:sup
153
+ 51: adj:pl:inst:n:com
154
+ 52: adj:pl:inst:n:pos
155
+ 53: adj:pl:inst:n:sup
156
+ 54: adj:pl:loc:f:com
157
+ 55: adj:pl:loc:f:pos
158
+ 56: adj:pl:loc:f:sup
159
+ 57: adj:pl:loc:m1:com
160
+ 58: adj:pl:loc:m1:pos
161
+ 59: adj:pl:loc:m1:sup
162
+ 60: adj:pl:loc:m2:pos
163
+ 61: adj:pl:loc:m3:com
164
+ 62: adj:pl:loc:m3:pos
165
+ 63: adj:pl:loc:m3:sup
166
+ 64: adj:pl:loc:n:com
167
+ 65: adj:pl:loc:n:pos
168
+ 66: adj:pl:loc:n:sup
169
+ 67: adj:pl:nom:f:com
170
+ 68: adj:pl:nom:f:pos
171
+ 69: adj:pl:nom:f:sup
172
+ 70: adj:pl:nom:m1:com
173
+ 71: adj:pl:nom:m1:pos
174
+ 72: adj:pl:nom:m1:sup
175
+ 73: adj:pl:nom:m2:com
176
+ 74: adj:pl:nom:m2:pos
177
+ 75: adj:pl:nom:m2:sup
178
+ 76: adj:pl:nom:m3:com
179
+ 77: adj:pl:nom:m3:pos
180
+ 78: adj:pl:nom:m3:sup
181
+ 79: adj:pl:nom:n:com
182
+ 80: adj:pl:nom:n:pos
183
+ 81: adj:pl:nom:n:sup
184
+ 82: adj:pl:voc:f:pos
185
+ 83: adj:pl:voc:m1:pos
186
+ 84: adj:pl:voc:m2:pos
187
+ 85: adj:pl:voc:n:pos
188
+ 86: adj:sg:acc:f:com
189
+ 87: adj:sg:acc:f:pos
190
+ 88: adj:sg:acc:f:sup
191
+ 89: adj:sg:acc:m1:com
192
+ 90: adj:sg:acc:m1:pos
193
+ 91: adj:sg:acc:m1:sup
194
+ 92: adj:sg:acc:m2:com
195
+ 93: adj:sg:acc:m2:pos
196
+ 94: adj:sg:acc:m2:sup
197
+ 95: adj:sg:acc:m3:com
198
+ 96: adj:sg:acc:m3:pos
199
+ 97: adj:sg:acc:m3:sup
200
+ 98: adj:sg:acc:n:com
201
+ 99: adj:sg:acc:n:pos
202
+ 100: adj:sg:acc:n:sup
203
+ 101: adj:sg:dat:f:com
204
+ 102: adj:sg:dat:f:pos
205
+ 103: adj:sg:dat:f:sup
206
+ 104: adj:sg:dat:m1:com
207
+ 105: adj:sg:dat:m1:pos
208
+ 106: adj:sg:dat:m1:sup
209
+ 107: adj:sg:dat:m2:pos
210
+ 108: adj:sg:dat:m3:com
211
+ 109: adj:sg:dat:m3:pos
212
+ 110: adj:sg:dat:m3:sup
213
+ 111: adj:sg:dat:n:com
214
+ 112: adj:sg:dat:n:pos
215
+ 113: adj:sg:dat:n:sup
216
+ 114: adj:sg:gen:f:com
217
+ 115: adj:sg:gen:f:pos
218
+ 116: adj:sg:gen:f:sup
219
+ 117: adj:sg:gen:m1:com
220
+ 118: adj:sg:gen:m1:pos
221
+ 119: adj:sg:gen:m1:sup
222
+ 120: adj:sg:gen:m2:pos
223
+ 121: adj:sg:gen:m2:sup
224
+ 122: adj:sg:gen:m3:com
225
+ 123: adj:sg:gen:m3:pos
226
+ 124: adj:sg:gen:m3:sup
227
+ 125: adj:sg:gen:n:com
228
+ 126: adj:sg:gen:n:pos
229
+ 127: adj:sg:gen:n:sup
230
+ 128: adj:sg:inst:f:com
231
+ 129: adj:sg:inst:f:pos
232
+ 130: adj:sg:inst:f:sup
233
+ 131: adj:sg:inst:m1:com
234
+ 132: adj:sg:inst:m1:pos
235
+ 133: adj:sg:inst:m1:sup
236
+ 134: adj:sg:inst:m2:com
237
+ 135: adj:sg:inst:m2:pos
238
+ 136: adj:sg:inst:m2:sup
239
+ 137: adj:sg:inst:m3:com
240
+ 138: adj:sg:inst:m3:pos
241
+ 139: adj:sg:inst:m3:sup
242
+ 140: adj:sg:inst:n:com
243
+ 141: adj:sg:inst:n:pos
244
+ 142: adj:sg:inst:n:sup
245
+ 143: adj:sg:loc:f:com
246
+ 144: adj:sg:loc:f:pos
247
+ 145: adj:sg:loc:f:sup
248
+ 146: adj:sg:loc:m1:com
249
+ 147: adj:sg:loc:m1:pos
250
+ 148: adj:sg:loc:m1:sup
251
+ 149: adj:sg:loc:m2:com
252
+ 150: adj:sg:loc:m2:pos
253
+ 151: adj:sg:loc:m3:com
254
+ 152: adj:sg:loc:m3:pos
255
+ 153: adj:sg:loc:m3:sup
256
+ 154: adj:sg:loc:n:com
257
+ 155: adj:sg:loc:n:pos
258
+ 156: adj:sg:loc:n:sup
259
+ 157: adj:sg:nom:f:com
260
+ 158: adj:sg:nom:f:pos
261
+ 159: adj:sg:nom:f:sup
262
+ 160: adj:sg:nom:m1:com
263
+ 161: adj:sg:nom:m1:pos
264
+ 162: adj:sg:nom:m1:sup
265
+ 163: adj:sg:nom:m2:com
266
+ 164: adj:sg:nom:m2:pos
267
+ 165: adj:sg:nom:m2:sup
268
+ 166: adj:sg:nom:m3:com
269
+ 167: adj:sg:nom:m3:pos
270
+ 168: adj:sg:nom:m3:sup
271
+ 169: adj:sg:nom:n:com
272
+ 170: adj:sg:nom:n:pos
273
+ 171: adj:sg:nom:n:sup
274
+ 172: adj:sg:voc:f:pos
275
+ 173: adj:sg:voc:f:sup
276
+ 174: adj:sg:voc:m1:pos
277
+ 175: adj:sg:voc:m1:sup
278
+ 176: adj:sg:voc:m2:pos
279
+ 177: adj:sg:voc:m3:pos
280
+ 178: adj:sg:voc:n:pos
281
+ 179: adja
282
+ 180: adjc
283
+ 181: adjp:dat
284
+ 182: adjp:gen
285
+ 183: adv
286
+ 184: adv:com
287
+ 185: adv:pos
288
+ 186: adv:sup
289
+ 187: aglt:pl:pri:imperf:nwok
290
+ 188: aglt:pl:sec:imperf:nwok
291
+ 189: aglt:sg:pri:imperf:nwok
292
+ 190: aglt:sg:pri:imperf:wok
293
+ 191: aglt:sg:sec:imperf:nwok
294
+ 192: aglt:sg:sec:imperf:wok
295
+ 193: bedzie:pl:pri:imperf
296
+ 194: bedzie:pl:sec:imperf
297
+ 195: bedzie:pl:ter:imperf
298
+ 196: bedzie:sg:pri:imperf
299
+ 197: bedzie:sg:sec:imperf
300
+ 198: bedzie:sg:ter:imperf
301
+ 199: brev:npun
302
+ 200: brev:pun
303
+ 201: comp
304
+ 202: conj
305
+ 203: depr:pl:acc:m2
306
+ 204: depr:pl:nom:m2
307
+ 205: depr:pl:voc:m2
308
+ 206: dig
309
+ 207: fin:pl:pri:imperf
310
+ 208: fin:pl:pri:perf
311
+ 209: fin:pl:sec:imperf
312
+ 210: fin:pl:sec:perf
313
+ 211: fin:pl:ter:imperf
314
+ 212: fin:pl:ter:perf
315
+ 213: fin:sg:pri:imperf
316
+ 214: fin:sg:pri:perf
317
+ 215: fin:sg:sec:imperf
318
+ 216: fin:sg:sec:perf
319
+ 217: fin:sg:ter:imperf
320
+ 218: fin:sg:ter:perf
321
+ 219: frag
322
+ 220: ger:pl:acc:n:imperf:aff
323
+ 221: ger:pl:acc:n:perf:aff
324
+ 222: ger:pl:dat:n:perf:aff
325
+ 223: ger:pl:gen:n:imperf:aff
326
+ 224: ger:pl:gen:n:perf:aff
327
+ 225: ger:pl:inst:n:imperf:aff
328
+ 226: ger:pl:inst:n:perf:aff
329
+ 227: ger:pl:loc:n:imperf:aff
330
+ 228: ger:pl:loc:n:perf:aff
331
+ 229: ger:pl:nom:n:imperf:aff
332
+ 230: ger:pl:nom:n:perf:aff
333
+ 231: ger:sg:acc:n:imperf:aff
334
+ 232: ger:sg:acc:n:imperf:neg
335
+ 233: ger:sg:acc:n:perf:aff
336
+ 234: ger:sg:acc:n:perf:neg
337
+ 235: ger:sg:dat:n:imperf:aff
338
+ 236: ger:sg:dat:n:perf:aff
339
+ 237: ger:sg:dat:n:perf:neg
340
+ 238: ger:sg:gen:n:imperf:aff
341
+ 239: ger:sg:gen:n:imperf:neg
342
+ 240: ger:sg:gen:n:perf:aff
343
+ 241: ger:sg:gen:n:perf:neg
344
+ 242: ger:sg:inst:n:imperf:aff
345
+ 243: ger:sg:inst:n:imperf:neg
346
+ 244: ger:sg:inst:n:perf:aff
347
+ 245: ger:sg:inst:n:perf:neg
348
+ 246: ger:sg:loc:n:imperf:aff
349
+ 247: ger:sg:loc:n:imperf:neg
350
+ 248: ger:sg:loc:n:perf:aff
351
+ 249: ger:sg:loc:n:perf:neg
352
+ 250: ger:sg:nom:n:imperf:aff
353
+ 251: ger:sg:nom:n:imperf:neg
354
+ 252: ger:sg:nom:n:perf:aff
355
+ 253: ger:sg:nom:n:perf:neg
356
+ 254: imps:imperf
357
+ 255: imps:perf
358
+ 256: impt:pl:pri:imperf
359
+ 257: impt:pl:pri:perf
360
+ 258: impt:pl:sec:imperf
361
+ 259: impt:pl:sec:perf
362
+ 260: impt:sg:pri:imperf
363
+ 261: impt:sg:sec:imperf
364
+ 262: impt:sg:sec:perf
365
+ 263: inf:imperf
366
+ 264: inf:perf
367
+ 265: interj
368
+ 266: interp
369
+ 267: num:pl:acc:f:congr:ncol
370
+ 268: num:pl:acc:f:rec
371
+ 269: num:pl:acc:f:rec:ncol
372
+ 270: num:pl:acc:m1:rec
373
+ 271: num:pl:acc:m1:rec:col
374
+ 272: num:pl:acc:m1:rec:ncol
375
+ 273: num:pl:acc:m2:congr:ncol
376
+ 274: num:pl:acc:m2:rec
377
+ 275: num:pl:acc:m2:rec:ncol
378
+ 276: num:pl:acc:m3:congr
379
+ 277: num:pl:acc:m3:congr:ncol
380
+ 278: num:pl:acc:m3:rec
381
+ 279: num:pl:acc:m3:rec:ncol
382
+ 280: num:pl:acc:n:congr:ncol
383
+ 281: num:pl:acc:n:rec
384
+ 282: num:pl:acc:n:rec:col
385
+ 283: num:pl:acc:n:rec:ncol
386
+ 284: num:pl:dat:f:congr
387
+ 285: num:pl:dat:f:congr:ncol
388
+ 286: num:pl:dat:m1:congr
389
+ 287: num:pl:dat:m1:congr:col
390
+ 288: num:pl:dat:m1:congr:ncol
391
+ 289: num:pl:dat:m2:congr
392
+ 290: num:pl:dat:m3:congr:ncol
393
+ 291: num:pl:dat:n:congr
394
+ 292: num:pl:dat:n:congr:ncol
395
+ 293: num:pl:gen:f:congr
396
+ 294: num:pl:gen:f:congr:ncol
397
+ 295: num:pl:gen:f:rec
398
+ 296: num:pl:gen:f:rec:ncol
399
+ 297: num:pl:gen:m1:congr
400
+ 298: num:pl:gen:m1:congr:ncol
401
+ 299: num:pl:gen:m1:rec
402
+ 300: num:pl:gen:m1:rec:col
403
+ 301: num:pl:gen:m2:congr
404
+ 302: num:pl:gen:m2:congr:ncol
405
+ 303: num:pl:gen:m2:rec
406
+ 304: num:pl:gen:m3:congr
407
+ 305: num:pl:gen:m3:congr:ncol
408
+ 306: num:pl:gen:m3:rec
409
+ 307: num:pl:gen:m3:rec:ncol
410
+ 308: num:pl:gen:n:congr
411
+ 309: num:pl:gen:n:congr:ncol
412
+ 310: num:pl:gen:n:rec
413
+ 311: num:pl:gen:n:rec:col
414
+ 312: num:pl:inst:f:congr
415
+ 313: num:pl:inst:f:congr:ncol
416
+ 314: num:pl:inst:m1:congr
417
+ 315: num:pl:inst:m1:congr:ncol
418
+ 316: num:pl:inst:m1:rec:col
419
+ 317: num:pl:inst:m2:congr
420
+ 318: num:pl:inst:m2:congr:ncol
421
+ 319: num:pl:inst:m3:congr
422
+ 320: num:pl:inst:m3:congr:ncol
423
+ 321: num:pl:inst:n:congr
424
+ 322: num:pl:inst:n:congr:ncol
425
+ 323: num:pl:inst:n:rec:col
426
+ 324: num:pl:loc:f:congr
427
+ 325: num:pl:loc:f:congr:ncol
428
+ 326: num:pl:loc:m1:congr
429
+ 327: num:pl:loc:m1:congr:ncol
430
+ 328: num:pl:loc:m2:congr
431
+ 329: num:pl:loc:m2:congr:ncol
432
+ 330: num:pl:loc:m3:congr
433
+ 331: num:pl:loc:m3:congr:ncol
434
+ 332: num:pl:loc:n:congr
435
+ 333: num:pl:loc:n:congr:ncol
436
+ 334: num:pl:nom:f:congr:ncol
437
+ 335: num:pl:nom:f:rec
438
+ 336: num:pl:nom:f:rec:ncol
439
+ 337: num:pl:nom:m1:congr:ncol
440
+ 338: num:pl:nom:m1:rec
441
+ 339: num:pl:nom:m1:rec:col
442
+ 340: num:pl:nom:m1:rec:ncol
443
+ 341: num:pl:nom:m2:congr:ncol
444
+ 342: num:pl:nom:m2:rec
445
+ 343: num:pl:nom:m2:rec:ncol
446
+ 344: num:pl:nom:m3:congr:ncol
447
+ 345: num:pl:nom:m3:rec
448
+ 346: num:pl:nom:m3:rec:ncol
449
+ 347: num:pl:nom:n:congr
450
+ 348: num:pl:nom:n:congr:ncol
451
+ 349: num:pl:nom:n:rec
452
+ 350: num:pl:nom:n:rec:col
453
+ 351: num:pl:nom:n:rec:ncol
454
+ 352: num:sg:acc:f:rec
455
+ 353: num:sg:acc:f:rec:ncol
456
+ 354: num:sg:acc:m1:rec:ncol
457
+ 355: num:sg:acc:m2:rec
458
+ 356: num:sg:acc:m3:rec
459
+ 357: num:sg:acc:m3:rec:ncol
460
+ 358: num:sg:acc:n:rec
461
+ 359: num:sg:gen:f:rec
462
+ 360: num:sg:gen:m3:rec
463
+ 361: num:sg:gen:n:rec
464
+ 362: num:sg:inst:m3:rec
465
+ 363: num:sg:loc:f:rec
466
+ 364: num:sg:loc:m3:congr
467
+ 365: num:sg:loc:m3:rec
468
+ 366: num:sg:nom:f:rec
469
+ 367: num:sg:nom:m2:rec
470
+ 368: num:sg:nom:m3:rec
471
+ 369: num:sg:nom:m3:rec:ncol
472
+ 370: num:sg:nom:n:rec
473
+ 371: numcomp
474
+ 372: pact:pl:acc:f:imperf:aff
475
+ 373: pact:pl:acc:f:imperf:neg
476
+ 374: pact:pl:acc:m1:imperf:aff
477
+ 375: pact:pl:acc:m2:imperf:aff
478
+ 376: pact:pl:acc:m3:imperf:aff
479
+ 377: pact:pl:acc:m3:imperf:neg
480
+ 378: pact:pl:acc:n:imperf:aff
481
+ 379: pact:pl:acc:n:imperf:neg
482
+ 380: pact:pl:dat:f:imperf:aff
483
+ 381: pact:pl:dat:m1:imperf:aff
484
+ 382: pact:pl:dat:m2:imperf:aff
485
+ 383: pact:pl:dat:m3:imperf:aff
486
+ 384: pact:pl:dat:n:imperf:aff
487
+ 385: pact:pl:gen:f:imperf:aff
488
+ 386: pact:pl:gen:f:imperf:neg
489
+ 387: pact:pl:gen:m1:imperf:aff
490
+ 388: pact:pl:gen:m1:imperf:neg
491
+ 389: pact:pl:gen:m2:imperf:aff
492
+ 390: pact:pl:gen:m3:imperf:aff
493
+ 391: pact:pl:gen:m3:imperf:neg
494
+ 392: pact:pl:gen:n:imperf:aff
495
+ 393: pact:pl:inst:f:imperf:aff
496
+ 394: pact:pl:inst:m1:imperf:aff
497
+ 395: pact:pl:inst:m2:imperf:aff
498
+ 396: pact:pl:inst:m3:imperf:aff
499
+ 397: pact:pl:inst:m3:imperf:neg
500
+ 398: pact:pl:inst:n:imperf:aff
501
+ 399: pact:pl:inst:n:imperf:neg
502
+ 400: pact:pl:loc:f:imperf:aff
503
+ 401: pact:pl:loc:m1:imperf:aff
504
+ 402: pact:pl:loc:m3:imperf:aff
505
+ 403: pact:pl:loc:m3:imperf:neg
506
+ 404: pact:pl:loc:n:imperf:aff
507
+ 405: pact:pl:loc:n:imperf:neg
508
+ 406: pact:pl:nom:f:imperf:aff
509
+ 407: pact:pl:nom:f:imperf:neg
510
+ 408: pact:pl:nom:m1:imperf:aff
511
+ 409: pact:pl:nom:m2:imperf:aff
512
+ 410: pact:pl:nom:m3:imperf:aff
513
+ 411: pact:pl:nom:n:imperf:aff
514
+ 412: pact:pl:nom:n:imperf:neg
515
+ 413: pact:pl:voc:f:imperf:aff
516
+ 414: pact:sg:acc:f:imperf:aff
517
+ 415: pact:sg:acc:f:imperf:neg
518
+ 416: pact:sg:acc:m1:imperf:aff
519
+ 417: pact:sg:acc:m2:imperf:aff
520
+ 418: pact:sg:acc:m3:imperf:aff
521
+ 419: pact:sg:acc:n:imperf:aff
522
+ 420: pact:sg:acc:n:imperf:neg
523
+ 421: pact:sg:dat:f:imperf:aff
524
+ 422: pact:sg:dat:m1:imperf:aff
525
+ 423: pact:sg:dat:m2:imperf:aff
526
+ 424: pact:sg:dat:m3:imperf:aff
527
+ 425: pact:sg:dat:n:imperf:aff
528
+ 426: pact:sg:gen:f:imperf:aff
529
+ 427: pact:sg:gen:f:imperf:neg
530
+ 428: pact:sg:gen:m1:imperf:aff
531
+ 429: pact:sg:gen:m1:imperf:neg
532
+ 430: pact:sg:gen:m2:imperf:aff
533
+ 431: pact:sg:gen:m3:imperf:aff
534
+ 432: pact:sg:gen:m3:imperf:neg
535
+ 433: pact:sg:gen:n:imperf:aff
536
+ 434: pact:sg:gen:n:imperf:neg
537
+ 435: pact:sg:inst:f:imperf:aff
538
+ 436: pact:sg:inst:f:imperf:neg
539
+ 437: pact:sg:inst:m1:imperf:aff
540
+ 438: pact:sg:inst:m1:imperf:neg
541
+ 439: pact:sg:inst:m2:imperf:aff
542
+ 440: pact:sg:inst:m2:imperf:neg
543
+ 441: pact:sg:inst:m3:imperf:aff
544
+ 442: pact:sg:inst:m3:imperf:neg
545
+ 443: pact:sg:inst:n:imperf:aff
546
+ 444: pact:sg:loc:f:imperf:aff
547
+ 445: pact:sg:loc:f:imperf:neg
548
+ 446: pact:sg:loc:m1:imperf:aff
549
+ 447: pact:sg:loc:m2:imperf:aff
550
+ 448: pact:sg:loc:m3:imperf:aff
551
+ 449: pact:sg:loc:m3:imperf:neg
552
+ 450: pact:sg:loc:n:imperf:aff
553
+ 451: pact:sg:loc:n:imperf:neg
554
+ 452: pact:sg:nom:f:imperf:aff
555
+ 453: pact:sg:nom:f:imperf:neg
556
+ 454: pact:sg:nom:m1:imperf:aff
557
+ 455: pact:sg:nom:m1:imperf:neg
558
+ 456: pact:sg:nom:m2:imperf:aff
559
+ 457: pact:sg:nom:m3:imperf:aff
560
+ 458: pact:sg:nom:m3:imperf:neg
561
+ 459: pact:sg:nom:n:imperf:aff
562
+ 460: pact:sg:nom:n:imperf:neg
563
+ 461: pact:sg:voc:m1:imperf:aff
564
+ 462: pacta
565
+ 463: pant:perf
566
+ 464: part
567
+ 465: part:nwok
568
+ 466: part:wok
569
+ 467: pcon:imperf
570
+ 468: ppas:pl:acc:f:imperf:aff
571
+ 469: ppas:pl:acc:f:perf:aff
572
+ 470: ppas:pl:acc:f:perf:neg
573
+ 471: ppas:pl:acc:m1:imperf:aff
574
+ 472: ppas:pl:acc:m1:imperf:neg
575
+ 473: ppas:pl:acc:m1:perf:aff
576
+ 474: ppas:pl:acc:m1:perf:neg
577
+ 475: ppas:pl:acc:m2:imperf:aff
578
+ 476: ppas:pl:acc:m2:perf:aff
579
+ 477: ppas:pl:acc:m3:imperf:aff
580
+ 478: ppas:pl:acc:m3:perf:aff
581
+ 479: ppas:pl:acc:m3:perf:neg
582
+ 480: ppas:pl:acc:n:imperf:aff
583
+ 481: ppas:pl:acc:n:imperf:neg
584
+ 482: ppas:pl:acc:n:perf:aff
585
+ 483: ppas:pl:acc:n:perf:neg
586
+ 484: ppas:pl:dat:f:imperf:aff
587
+ 485: ppas:pl:dat:f:perf:aff
588
+ 486: ppas:pl:dat:f:perf:neg
589
+ 487: ppas:pl:dat:m1:imperf:aff
590
+ 488: ppas:pl:dat:m1:perf:aff
591
+ 489: ppas:pl:dat:m1:perf:neg
592
+ 490: ppas:pl:dat:m2:imperf:aff
593
+ 491: ppas:pl:dat:m3:imperf:aff
594
+ 492: ppas:pl:dat:m3:perf:aff
595
+ 493: ppas:pl:dat:n:imperf:aff
596
+ 494: ppas:pl:dat:n:perf:aff
597
+ 495: ppas:pl:gen:f:imperf:aff
598
+ 496: ppas:pl:gen:f:imperf:neg
599
+ 497: ppas:pl:gen:f:perf:aff
600
+ 498: ppas:pl:gen:f:perf:neg
601
+ 499: ppas:pl:gen:m1:imperf:aff
602
+ 500: ppas:pl:gen:m1:imperf:neg
603
+ 501: ppas:pl:gen:m1:perf:aff
604
+ 502: ppas:pl:gen:m1:perf:neg
605
+ 503: ppas:pl:gen:m2:imperf:aff
606
+ 504: ppas:pl:gen:m2:perf:aff
607
+ 505: ppas:pl:gen:m3:imperf:aff
608
+ 506: ppas:pl:gen:m3:imperf:neg
609
+ 507: ppas:pl:gen:m3:perf:aff
610
+ 508: ppas:pl:gen:m3:perf:neg
611
+ 509: ppas:pl:gen:n:imperf:aff
612
+ 510: ppas:pl:gen:n:perf:aff
613
+ 511: ppas:pl:gen:n:perf:neg
614
+ 512: ppas:pl:inst:f:imperf:aff
615
+ 513: ppas:pl:inst:f:perf:aff
616
+ 514: ppas:pl:inst:m1:imperf:aff
617
+ 515: ppas:pl:inst:m1:perf:aff
618
+ 516: ppas:pl:inst:m2:perf:aff
619
+ 517: ppas:pl:inst:m3:imperf:aff
620
+ 518: ppas:pl:inst:m3:perf:aff
621
+ 519: ppas:pl:inst:n:imperf:aff
622
+ 520: ppas:pl:inst:n:perf:aff
623
+ 521: ppas:pl:loc:f:imperf:aff
624
+ 522: ppas:pl:loc:f:imperf:neg
625
+ 523: ppas:pl:loc:f:perf:aff
626
+ 524: ppas:pl:loc:f:perf:neg
627
+ 525: ppas:pl:loc:m1:imperf:aff
628
+ 526: ppas:pl:loc:m1:perf:aff
629
+ 527: ppas:pl:loc:m2:imperf:aff
630
+ 528: ppas:pl:loc:m3:imperf:aff
631
+ 529: ppas:pl:loc:m3:perf:aff
632
+ 530: ppas:pl:loc:m3:perf:neg
633
+ 531: ppas:pl:loc:n:imperf:aff
634
+ 532: ppas:pl:loc:n:perf:aff
635
+ 533: ppas:pl:loc:n:perf:neg
636
+ 534: ppas:pl:nom:f:imperf:aff
637
+ 535: ppas:pl:nom:f:imperf:neg
638
+ 536: ppas:pl:nom:f:perf:aff
639
+ 537: ppas:pl:nom:f:perf:neg
640
+ 538: ppas:pl:nom:m1:imperf:aff
641
+ 539: ppas:pl:nom:m1:imperf:neg
642
+ 540: ppas:pl:nom:m1:perf:aff
643
+ 541: ppas:pl:nom:m1:perf:neg
644
+ 542: ppas:pl:nom:m2:imperf:aff
645
+ 543: ppas:pl:nom:m2:perf:aff
646
+ 544: ppas:pl:nom:m3:imperf:aff
647
+ 545: ppas:pl:nom:m3:imperf:neg
648
+ 546: ppas:pl:nom:m3:perf:aff
649
+ 547: ppas:pl:nom:m3:perf:neg
650
+ 548: ppas:pl:nom:n:imperf:aff
651
+ 549: ppas:pl:nom:n:perf:aff
652
+ 550: ppas:pl:nom:n:perf:neg
653
+ 551: ppas:pl:voc:f:imperf:aff
654
+ 552: ppas:sg:acc:f:imperf:aff
655
+ 553: ppas:sg:acc:f:imperf:neg
656
+ 554: ppas:sg:acc:f:perf:aff
657
+ 555: ppas:sg:acc:f:perf:neg
658
+ 556: ppas:sg:acc:m1:imperf:aff
659
+ 557: ppas:sg:acc:m1:perf:aff
660
+ 558: ppas:sg:acc:m2:imperf:aff
661
+ 559: ppas:sg:acc:m2:perf:aff
662
+ 560: ppas:sg:acc:m3:imperf:aff
663
+ 561: ppas:sg:acc:m3:imperf:neg
664
+ 562: ppas:sg:acc:m3:perf:aff
665
+ 563: ppas:sg:acc:m3:perf:neg
666
+ 564: ppas:sg:acc:n:imperf:aff
667
+ 565: ppas:sg:acc:n:perf:aff
668
+ 566: ppas:sg:acc:n:perf:neg
669
+ 567: ppas:sg:dat:f:imperf:aff
670
+ 568: ppas:sg:dat:f:imperf:neg
671
+ 569: ppas:sg:dat:f:perf:aff
672
+ 570: ppas:sg:dat:f:perf:neg
673
+ 571: ppas:sg:dat:m1:imperf:aff
674
+ 572: ppas:sg:dat:m1:perf:aff
675
+ 573: ppas:sg:dat:m2:perf:aff
676
+ 574: ppas:sg:dat:m3:imperf:aff
677
+ 575: ppas:sg:dat:m3:perf:aff
678
+ 576: ppas:sg:dat:n:perf:aff
679
+ 577: ppas:sg:gen:f:imperf:aff
680
+ 578: ppas:sg:gen:f:imperf:neg
681
+ 579: ppas:sg:gen:f:perf:aff
682
+ 580: ppas:sg:gen:f:perf:neg
683
+ 581: ppas:sg:gen:m1:imperf:aff
684
+ 582: ppas:sg:gen:m1:perf:aff
685
+ 583: ppas:sg:gen:m1:perf:neg
686
+ 584: ppas:sg:gen:m2:imperf:aff
687
+ 585: ppas:sg:gen:m2:perf:aff
688
+ 586: ppas:sg:gen:m3:imperf:aff
689
+ 587: ppas:sg:gen:m3:imperf:neg
690
+ 588: ppas:sg:gen:m3:perf:aff
691
+ 589: ppas:sg:gen:m3:perf:neg
692
+ 590: ppas:sg:gen:n:imperf:aff
693
+ 591: ppas:sg:gen:n:imperf:neg
694
+ 592: ppas:sg:gen:n:perf:aff
695
+ 593: ppas:sg:gen:n:perf:neg
696
+ 594: ppas:sg:inst:f:imperf:aff
697
+ 595: ppas:sg:inst:f:imperf:neg
698
+ 596: ppas:sg:inst:f:perf:aff
699
+ 597: ppas:sg:inst:f:perf:neg
700
+ 598: ppas:sg:inst:m1:imperf:aff
701
+ 599: ppas:sg:inst:m1:imperf:neg
702
+ 600: ppas:sg:inst:m1:perf:aff
703
+ 601: ppas:sg:inst:m1:perf:neg
704
+ 602: ppas:sg:inst:m2:imperf:aff
705
+ 603: ppas:sg:inst:m2:perf:aff
706
+ 604: ppas:sg:inst:m3:imperf:aff
707
+ 605: ppas:sg:inst:m3:imperf:neg
708
+ 606: ppas:sg:inst:m3:perf:aff
709
+ 607: ppas:sg:inst:m3:perf:neg
710
+ 608: ppas:sg:inst:n:imperf:aff
711
+ 609: ppas:sg:inst:n:imperf:neg
712
+ 610: ppas:sg:inst:n:perf:aff
713
+ 611: ppas:sg:inst:n:perf:neg
714
+ 612: ppas:sg:loc:f:imperf:aff
715
+ 613: ppas:sg:loc:f:perf:aff
716
+ 614: ppas:sg:loc:f:perf:neg
717
+ 615: ppas:sg:loc:m1:imperf:aff
718
+ 616: ppas:sg:loc:m1:perf:aff
719
+ 617: ppas:sg:loc:m2:imperf:aff
720
+ 618: ppas:sg:loc:m3:imperf:aff
721
+ 619: ppas:sg:loc:m3:imperf:neg
722
+ 620: ppas:sg:loc:m3:perf:aff
723
+ 621: ppas:sg:loc:m3:perf:neg
724
+ 622: ppas:sg:loc:n:imperf:aff
725
+ 623: ppas:sg:loc:n:perf:aff
726
+ 624: ppas:sg:loc:n:perf:neg
727
+ 625: ppas:sg:nom:f:imperf:aff
728
+ 626: ppas:sg:nom:f:imperf:neg
729
+ 627: ppas:sg:nom:f:perf:aff
730
+ 628: ppas:sg:nom:f:perf:neg
731
+ 629: ppas:sg:nom:m1:imperf:aff
732
+ 630: ppas:sg:nom:m1:imperf:neg
733
+ 631: ppas:sg:nom:m1:perf:aff
734
+ 632: ppas:sg:nom:m1:perf:neg
735
+ 633: ppas:sg:nom:m2:imperf:aff
736
+ 634: ppas:sg:nom:m2:perf:aff
737
+ 635: ppas:sg:nom:m3:imperf:aff
738
+ 636: ppas:sg:nom:m3:imperf:neg
739
+ 637: ppas:sg:nom:m3:perf:aff
740
+ 638: ppas:sg:nom:m3:perf:neg
741
+ 639: ppas:sg:nom:n:imperf:aff
742
+ 640: ppas:sg:nom:n:imperf:neg
743
+ 641: ppas:sg:nom:n:perf:aff
744
+ 642: ppas:sg:nom:n:perf:neg
745
+ 643: ppas:sg:voc:m1:perf:aff
746
+ 644: ppas:sg:voc:m2:imperf:aff
747
+ 645: ppas:sg:voc:m3:perf:aff
748
+ 646: ppron12:pl:acc:f:pri
749
+ 647: ppron12:pl:acc:f:sec
750
+ 648: ppron12:pl:acc:m1:pri
751
+ 649: ppron12:pl:acc:m1:sec
752
+ 650: ppron12:pl:acc:m2:sec
753
+ 651: ppron12:pl:acc:n:sec
754
+ 652: ppron12:pl:dat:f:pri
755
+ 653: ppron12:pl:dat:f:sec
756
+ 654: ppron12:pl:dat:m1:pri
757
+ 655: ppron12:pl:dat:m1:sec
758
+ 656: ppron12:pl:dat:m3:sec
759
+ 657: ppron12:pl:gen:f:pri
760
+ 658: ppron12:pl:gen:f:sec
761
+ 659: ppron12:pl:gen:m1:pri
762
+ 660: ppron12:pl:gen:m1:sec
763
+ 661: ppron12:pl:gen:m2:pri
764
+ 662: ppron12:pl:inst:f:pri
765
+ 663: ppron12:pl:inst:m1:pri
766
+ 664: ppron12:pl:inst:m1:sec
767
+ 665: ppron12:pl:inst:n:pri
768
+ 666: ppron12:pl:loc:f:sec
769
+ 667: ppron12:pl:loc:m1:pri
770
+ 668: ppron12:pl:loc:m1:sec
771
+ 669: ppron12:pl:loc:m3:sec
772
+ 670: ppron12:pl:nom:f:pri
773
+ 671: ppron12:pl:nom:f:sec
774
+ 672: ppron12:pl:nom:m1:pri
775
+ 673: ppron12:pl:nom:m1:sec
776
+ 674: ppron12:pl:nom:m2:pri
777
+ 675: ppron12:pl:nom:n:sec
778
+ 676: ppron12:pl:voc:m1:sec
779
+ 677: ppron12:pl:voc:m2:sec
780
+ 678: ppron12:sg:acc:f:pri:akc
781
+ 679: ppron12:sg:acc:f:sec:akc
782
+ 680: ppron12:sg:acc:f:sec:nakc
783
+ 681: ppron12:sg:acc:m1:pri:akc
784
+ 682: ppron12:sg:acc:m1:pri:nakc
785
+ 683: ppron12:sg:acc:m1:sec:akc
786
+ 684: ppron12:sg:acc:m1:sec:nakc
787
+ 685: ppron12:sg:acc:m2:pri:akc
788
+ 686: ppron12:sg:acc:m2:sec:nakc
789
+ 687: ppron12:sg:acc:m3:pri:akc
790
+ 688: ppron12:sg:acc:m3:sec:nakc
791
+ 689: ppron12:sg:acc:n:pri:akc
792
+ 690: ppron12:sg:acc:n:sec:nakc
793
+ 691: ppron12:sg:dat:f:pri:akc
794
+ 692: ppron12:sg:dat:f:pri:nakc
795
+ 693: ppron12:sg:dat:f:sec:akc
796
+ 694: ppron12:sg:dat:f:sec:nakc
797
+ 695: ppron12:sg:dat:m1:pri:akc
798
+ 696: ppron12:sg:dat:m1:pri:nakc
799
+ 697: ppron12:sg:dat:m1:sec:akc
800
+ 698: ppron12:sg:dat:m1:sec:nakc
801
+ 699: ppron12:sg:dat:m2:pri:nakc
802
+ 700: ppron12:sg:dat:m2:sec:akc
803
+ 701: ppron12:sg:dat:m2:sec:nakc
804
+ 702: ppron12:sg:gen:f:pri:akc
805
+ 703: ppron12:sg:gen:f:sec:akc
806
+ 704: ppron12:sg:gen:f:sec:nakc
807
+ 705: ppron12:sg:gen:m1:pri:akc
808
+ 706: ppron12:sg:gen:m1:sec:akc
809
+ 707: ppron12:sg:gen:m1:sec:nakc
810
+ 708: ppron12:sg:gen:m2:pri:akc
811
+ 709: ppron12:sg:gen:m2:sec:akc
812
+ 710: ppron12:sg:gen:m2:sec:nakc
813
+ 711: ppron12:sg:gen:n:pri:akc
814
+ 712: ppron12:sg:inst:f:pri
815
+ 713: ppron12:sg:inst:f:sec
816
+ 714: ppron12:sg:inst:m1:pri
817
+ 715: ppron12:sg:inst:m1:pri:nakc
818
+ 716: ppron12:sg:inst:m1:sec
819
+ 717: ppron12:sg:inst:n:sec
820
+ 718: ppron12:sg:loc:f:pri
821
+ 719: ppron12:sg:loc:f:sec
822
+ 720: ppron12:sg:loc:m1:pri
823
+ 721: ppron12:sg:loc:m1:sec
824
+ 722: ppron12:sg:loc:m3:pri
825
+ 723: ppron12:sg:nom:f:pri
826
+ 724: ppron12:sg:nom:f:sec
827
+ 725: ppron12:sg:nom:m1:pri
828
+ 726: ppron12:sg:nom:m1:pri:nakc
829
+ 727: ppron12:sg:nom:m1:sec
830
+ 728: ppron12:sg:nom:m2:pri
831
+ 729: ppron12:sg:nom:m2:sec
832
+ 730: ppron12:sg:nom:m3:pri
833
+ 731: ppron12:sg:nom:m3:sec
834
+ 732: ppron12:sg:nom:n:sec
835
+ 733: ppron12:sg:voc:f:sec
836
+ 734: ppron12:sg:voc:m1:sec
837
+ 735: ppron12:sg:voc:m2:sec
838
+ 736: ppron12:sg:voc:n:sec
839
+ 737: ppron3:pl:acc:f:ter:akc:npraep
840
+ 738: ppron3:pl:acc:f:ter:akc:praep
841
+ 739: ppron3:pl:acc:m1:ter:akc:npraep
842
+ 740: ppron3:pl:acc:m1:ter:akc:praep
843
+ 741: ppron3:pl:acc:m2:ter:akc:npraep
844
+ 742: ppron3:pl:acc:m2:ter:akc:praep
845
+ 743: ppron3:pl:acc:m3:ter:akc:npraep
846
+ 744: ppron3:pl:acc:m3:ter:akc:praep
847
+ 745: ppron3:pl:acc:n:ter:akc:npraep
848
+ 746: ppron3:pl:acc:n:ter:akc:praep
849
+ 747: ppron3:pl:dat:f:ter:akc:npraep
850
+ 748: ppron3:pl:dat:f:ter:akc:praep
851
+ 749: ppron3:pl:dat:m1:ter:akc:npraep
852
+ 750: ppron3:pl:dat:m1:ter:akc:praep
853
+ 751: ppron3:pl:dat:m2:ter:akc:npraep
854
+ 752: ppron3:pl:dat:m3:ter:akc:npraep
855
+ 753: ppron3:pl:dat:m3:ter:akc:praep
856
+ 754: ppron3:pl:dat:n:ter:akc:npraep
857
+ 755: ppron3:pl:gen:f:ter:akc:npraep
858
+ 756: ppron3:pl:gen:f:ter:akc:praep
859
+ 757: ppron3:pl:gen:m1:ter:akc:npraep
860
+ 758: ppron3:pl:gen:m1:ter:akc:praep
861
+ 759: ppron3:pl:gen:m2:ter:akc:npraep
862
+ 760: ppron3:pl:gen:m2:ter:akc:praep
863
+ 761: ppron3:pl:gen:m3:ter:akc:npraep
864
+ 762: ppron3:pl:gen:m3:ter:akc:praep
865
+ 763: ppron3:pl:gen:n:ter:akc:npraep
866
+ 764: ppron3:pl:gen:n:ter:akc:praep
867
+ 765: ppron3:pl:inst:f:ter:akc:npraep
868
+ 766: ppron3:pl:inst:f:ter:akc:praep
869
+ 767: ppron3:pl:inst:m1:ter:akc:npraep
870
+ 768: ppron3:pl:inst:m1:ter:akc:praep
871
+ 769: ppron3:pl:inst:m2:ter:akc:npraep
872
+ 770: ppron3:pl:inst:m2:ter:akc:praep
873
+ 771: ppron3:pl:inst:m3:ter:akc:npraep
874
+ 772: ppron3:pl:inst:m3:ter:akc:praep
875
+ 773: ppron3:pl:inst:n:ter:akc:npraep
876
+ 774: ppron3:pl:inst:n:ter:akc:praep
877
+ 775: ppron3:pl:loc:f:ter:akc:praep
878
+ 776: ppron3:pl:loc:m1:ter:akc:praep
879
+ 777: ppron3:pl:loc:m2:ter:akc:praep
880
+ 778: ppron3:pl:loc:m3:ter:akc:praep
881
+ 779: ppron3:pl:loc:n:ter:akc:praep
882
+ 780: ppron3:pl:nom:f:ter:akc:npraep
883
+ 781: ppron3:pl:nom:f:ter:nakc:npraep
884
+ 782: ppron3:pl:nom:m1:ter:akc:npraep
885
+ 783: ppron3:pl:nom:m2:ter:akc:npraep
886
+ 784: ppron3:pl:nom:m3:ter:akc:npraep
887
+ 785: ppron3:pl:nom:n:ter:akc:npraep
888
+ 786: ppron3:sg:acc:f:ter:akc:npraep
889
+ 787: ppron3:sg:acc:f:ter:akc:praep
890
+ 788: ppron3:sg:acc:m1:ter:akc:npraep
891
+ 789: ppron3:sg:acc:m1:ter:akc:praep
892
+ 790: ppron3:sg:acc:m1:ter:nakc:npraep
893
+ 791: ppron3:sg:acc:m1:ter:nakc:praep
894
+ 792: ppron3:sg:acc:m2:ter:akc:praep
895
+ 793: ppron3:sg:acc:m2:ter:nakc:npraep
896
+ 794: ppron3:sg:acc:m2:ter:nakc:praep
897
+ 795: ppron3:sg:acc:m3:ter:akc:npraep
898
+ 796: ppron3:sg:acc:m3:ter:akc:praep
899
+ 797: ppron3:sg:acc:m3:ter:nakc:npraep
900
+ 798: ppron3:sg:acc:m3:ter:nakc:praep
901
+ 799: ppron3:sg:acc:n:ter:akc:npraep
902
+ 800: ppron3:sg:acc:n:ter:akc:praep
903
+ 801: ppron3:sg:dat:f:ter:akc:npraep
904
+ 802: ppron3:sg:dat:f:ter:akc:praep
905
+ 803: ppron3:sg:dat:m1:ter:akc:npraep
906
+ 804: ppron3:sg:dat:m1:ter:akc:praep
907
+ 805: ppron3:sg:dat:m1:ter:nakc:npraep
908
+ 806: ppron3:sg:dat:m2:ter:akc:npraep
909
+ 807: ppron3:sg:dat:m2:ter:nakc:npraep
910
+ 808: ppron3:sg:dat:m3:ter:akc:npraep
911
+ 809: ppron3:sg:dat:m3:ter:akc:praep
912
+ 810: ppron3:sg:dat:m3:ter:nakc:npraep
913
+ 811: ppron3:sg:dat:n:ter:akc:npraep
914
+ 812: ppron3:sg:dat:n:ter:akc:praep
915
+ 813: ppron3:sg:dat:n:ter:nakc:npraep
916
+ 814: ppron3:sg:gen:f:ter:akc:npraep
917
+ 815: ppron3:sg:gen:f:ter:akc:praep
918
+ 816: ppron3:sg:gen:m1:ter:akc:npraep
919
+ 817: ppron3:sg:gen:m1:ter:akc:praep
920
+ 818: ppron3:sg:gen:m1:ter:nakc:npraep
921
+ 819: ppron3:sg:gen:m1:ter:nakc:praep
922
+ 820: ppron3:sg:gen:m2:ter:akc:npraep
923
+ 821: ppron3:sg:gen:m2:ter:akc:praep
924
+ 822: ppron3:sg:gen:m2:ter:nakc:npraep
925
+ 823: ppron3:sg:gen:m3:ter:akc:npraep
926
+ 824: ppron3:sg:gen:m3:ter:akc:praep
927
+ 825: ppron3:sg:gen:m3:ter:nakc:npraep
928
+ 826: ppron3:sg:gen:m3:ter:nakc:praep
929
+ 827: ppron3:sg:gen:n:ter:akc:npraep
930
+ 828: ppron3:sg:gen:n:ter:akc:praep
931
+ 829: ppron3:sg:gen:n:ter:nakc:npraep
932
+ 830: ppron3:sg:inst:f:ter:akc:praep
933
+ 831: ppron3:sg:inst:m1:ter:akc:npraep
934
+ 832: ppron3:sg:inst:m1:ter:akc:praep
935
+ 833: ppron3:sg:inst:m2:ter:akc:npraep
936
+ 834: ppron3:sg:inst:m2:ter:akc:praep
937
+ 835: ppron3:sg:inst:m3:ter:akc:npraep
938
+ 836: ppron3:sg:inst:m3:ter:akc:praep
939
+ 837: ppron3:sg:inst:n:ter:akc:npraep
940
+ 838: ppron3:sg:inst:n:ter:akc:praep
941
+ 839: ppron3:sg:loc:f:ter:akc:praep
942
+ 840: ppron3:sg:loc:m1:ter:akc:praep
943
+ 841: ppron3:sg:loc:m2:ter:akc:praep
944
+ 842: ppron3:sg:loc:m3:ter:akc:praep
945
+ 843: ppron3:sg:loc:n:ter:akc:praep
946
+ 844: ppron3:sg:nom:f:ter:akc:npraep
947
+ 845: ppron3:sg:nom:f:ter:akc:praep
948
+ 846: ppron3:sg:nom:m1:ter:akc:npraep
949
+ 847: ppron3:sg:nom:m2:ter:akc:npraep
950
+ 848: ppron3:sg:nom:m2:ter:akc:praep
951
+ 849: ppron3:sg:nom:m3:ter:akc:npraep
952
+ 850: ppron3:sg:nom:n:ter:akc:npraep
953
+ 851: praet:pl:f:imperf
954
+ 852: praet:pl:f:perf
955
+ 853: praet:pl:m1:imperf
956
+ 854: praet:pl:m1:imperf:agl
957
+ 855: praet:pl:m1:perf
958
+ 856: praet:pl:m2:imperf
959
+ 857: praet:pl:m2:perf
960
+ 858: praet:pl:m3:imperf
961
+ 859: praet:pl:m3:perf
962
+ 860: praet:pl:n:imperf
963
+ 861: praet:pl:n:perf
964
+ 862: praet:sg:f:imperf
965
+ 863: praet:sg:f:imperf:agl
966
+ 864: praet:sg:f:imperf:nagl
967
+ 865: praet:sg:f:perf
968
+ 866: praet:sg:m1:imperf
969
+ 867: praet:sg:m1:imperf:agl
970
+ 868: praet:sg:m1:imperf:nagl
971
+ 869: praet:sg:m1:perf
972
+ 870: praet:sg:m1:perf:agl
973
+ 871: praet:sg:m1:perf:nagl
974
+ 872: praet:sg:m2:imperf
975
+ 873: praet:sg:m2:imperf:nagl
976
+ 874: praet:sg:m2:perf
977
+ 875: praet:sg:m2:perf:nagl
978
+ 876: praet:sg:m3:imperf
979
+ 877: praet:sg:m3:imperf:nagl
980
+ 878: praet:sg:m3:perf
981
+ 879: praet:sg:m3:perf:nagl
982
+ 880: praet:sg:n:imperf
983
+ 881: praet:sg:n:perf
984
+ 882: pred
985
+ 883: prep:acc
986
+ 884: prep:acc:nwok
987
+ 885: prep:acc:wok
988
+ 886: prep:dat
989
+ 887: prep:gen
990
+ 888: prep:gen:nwok
991
+ 889: prep:gen:wok
992
+ 890: prep:inst
993
+ 891: prep:inst:nwok
994
+ 892: prep:inst:wok
995
+ 893: prep:loc
996
+ 894: prep:loc:nwok
997
+ 895: prep:loc:wok
998
+ 896: prep:nom
999
+ 897: romandig
1000
+ 898: siebie:acc
1001
+ 899: siebie:dat
1002
+ 900: siebie:gen
1003
+ 901: siebie:inst
1004
+ 902: siebie:loc
1005
+ 903: subst:pl:acc:f
1006
+ 904: subst:pl:acc:m1
1007
+ 905: subst:pl:acc:m1:pt
1008
+ 906: subst:pl:acc:m2
1009
+ 907: subst:pl:acc:m3
1010
+ 908: subst:pl:acc:n:col
1011
+ 909: subst:pl:acc:n:ncol
1012
+ 910: subst:pl:acc:n:pt
1013
+ 911: subst:pl:dat:f
1014
+ 912: subst:pl:dat:m1
1015
+ 913: subst:pl:dat:m1:pt
1016
+ 914: subst:pl:dat:m2
1017
+ 915: subst:pl:dat:m3
1018
+ 916: subst:pl:dat:n:col
1019
+ 917: subst:pl:dat:n:ncol
1020
+ 918: subst:pl:dat:n:pt
1021
+ 919: subst:pl:gen:f
1022
+ 920: subst:pl:gen:m1
1023
+ 921: subst:pl:gen:m1:pt
1024
+ 922: subst:pl:gen:m2
1025
+ 923: subst:pl:gen:m3
1026
+ 924: subst:pl:gen:n:col
1027
+ 925: subst:pl:gen:n:ncol
1028
+ 926: subst:pl:gen:n:pt
1029
+ 927: subst:pl:inst:f
1030
+ 928: subst:pl:inst:m1
1031
+ 929: subst:pl:inst:m1:pt
1032
+ 930: subst:pl:inst:m2
1033
+ 931: subst:pl:inst:m3
1034
+ 932: subst:pl:inst:n:col
1035
+ 933: subst:pl:inst:n:ncol
1036
+ 934: subst:pl:inst:n:pt
1037
+ 935: subst:pl:loc:f
1038
+ 936: subst:pl:loc:m1
1039
+ 937: subst:pl:loc:m1:pt
1040
+ 938: subst:pl:loc:m2
1041
+ 939: subst:pl:loc:m3
1042
+ 940: subst:pl:loc:n:col
1043
+ 941: subst:pl:loc:n:ncol
1044
+ 942: subst:pl:loc:n:pt
1045
+ 943: subst:pl:nom:f
1046
+ 944: subst:pl:nom:m1
1047
+ 945: subst:pl:nom:m1:pt
1048
+ 946: subst:pl:nom:m2
1049
+ 947: subst:pl:nom:m3
1050
+ 948: subst:pl:nom:n:col
1051
+ 949: subst:pl:nom:n:ncol
1052
+ 950: subst:pl:nom:n:pt
1053
+ 951: subst:pl:voc:f
1054
+ 952: subst:pl:voc:m1
1055
+ 953: subst:pl:voc:m1:pt
1056
+ 954: subst:pl:voc:m3
1057
+ 955: subst:pl:voc:n:col
1058
+ 956: subst:pl:voc:n:ncol
1059
+ 957: subst:pl:voc:n:pt
1060
+ 958: subst:sg:acc:f
1061
+ 959: subst:sg:acc:m1
1062
+ 960: subst:sg:acc:m2
1063
+ 961: subst:sg:acc:m3
1064
+ 962: subst:sg:acc:n:col
1065
+ 963: subst:sg:acc:n:ncol
1066
+ 964: subst:sg:dat:f
1067
+ 965: subst:sg:dat:m1
1068
+ 966: subst:sg:dat:m2
1069
+ 967: subst:sg:dat:m3
1070
+ 968: subst:sg:dat:n:col
1071
+ 969: subst:sg:dat:n:ncol
1072
+ 970: subst:sg:gen:f
1073
+ 971: subst:sg:gen:m1
1074
+ 972: subst:sg:gen:m2
1075
+ 973: subst:sg:gen:m3
1076
+ 974: subst:sg:gen:n:col
1077
+ 975: subst:sg:gen:n:ncol
1078
+ 976: subst:sg:inst:f
1079
+ 977: subst:sg:inst:m1
1080
+ 978: subst:sg:inst:m2
1081
+ 979: subst:sg:inst:m3
1082
+ 980: subst:sg:inst:n:col
1083
+ 981: subst:sg:inst:n:ncol
1084
+ 982: subst:sg:loc:f
1085
+ 983: subst:sg:loc:m1
1086
+ 984: subst:sg:loc:m2
1087
+ 985: subst:sg:loc:m3
1088
+ 986: subst:sg:loc:n:col
1089
+ 987: subst:sg:loc:n:ncol
1090
+ 988: subst:sg:nom:f
1091
+ 989: subst:sg:nom:m1
1092
+ 990: subst:sg:nom:m2
1093
+ 991: subst:sg:nom:m3
1094
+ 992: subst:sg:nom:n:col
1095
+ 993: subst:sg:nom:n:ncol
1096
+ 994: subst:sg:voc:f
1097
+ 995: subst:sg:voc:m1
1098
+ 996: subst:sg:voc:m2
1099
+ 997: subst:sg:voc:m3
1100
+ 998: subst:sg:voc:n:col
1101
+ 999: subst:sg:voc:n:ncol
1102
+ 1000: sym
1103
+ 1001: winien:pl:f:imperf
1104
+ 1002: winien:pl:m1:imperf
1105
+ 1003: winien:pl:m2:imperf
1106
+ 1004: winien:pl:m3:imperf
1107
+ 1005: winien:pl:n:imperf
1108
+ 1006: winien:sg:f:imperf
1109
+ 1007: winien:sg:m1:imperf
1110
+ 1008: winien:sg:m2:imperf
1111
+ 1009: winien:sg:m3:imperf
1112
+ 1010: winien:sg:n:imperf
1113
+ 1011: xxs:acc
1114
+ 1012: xxs:dat
1115
+ 1013: xxs:gen
1116
+ 1014: xxs:inst
1117
+ 1015: xxs:loc
1118
+ 1016: xxs:nom
1119
+ 1017: xxs:voc
1120
+ 1018: xxx
1121
+ - name: nps
1122
+ sequence: bool
1123
+ - name: nkjp_ids
1124
+ sequence: string
1125
+ config_name: nkjp1m
1126
+ splits:
1127
+ - name: test
1128
+ num_bytes: 8324533
1129
+ num_examples: 8964
1130
+ - name: train
1131
+ num_bytes: 65022406
1132
+ num_examples: 68943
1133
+ - name: validation
1134
+ num_bytes: 7465442
1135
+ num_examples: 7755
1136
+ download_size: 16167009
1137
+ dataset_size: 80812381
1138
+ ---
1139
+ # Dataset Card for NKJP1M – The manually annotated subcorpus of the National Corpus of Polish
1140
+
1141
+ ## Table of Contents
1142
+ - [Table of Contents](#table-of-contents)
1143
+ - [Dataset Description](#dataset-description)
1144
+ - [Dataset Summary](#dataset-summary)
1145
+ - [Supported Tasks and Leaderboards](#supported-tasks-and-leaderboards)
1146
+ - [Languages](#languages)
1147
+ - [Dataset Structure](#dataset-structure)
1148
+ - [Data Instances](#data-instances)
1149
+ - [Data Fields](#data-fields)
1150
+ - [Data Splits](#data-splits)
1151
+ - [Dataset Creation](#dataset-creation)
1152
+ - [Curation Rationale](#curation-rationale)
1153
+ - [Source Data](#source-data)
1154
+ - [Annotations](#annotations)
1155
+ - [Personal and Sensitive Information](#personal-and-sensitive-information)
1156
+ - [Considerations for Using the Data](#considerations-for-using-the-data)
1157
+ - [Social Impact of Dataset](#social-impact-of-dataset)
1158
+ - [Discussion of Biases](#discussion-of-biases)
1159
+ - [Other Known Limitations](#other-known-limitations)
1160
+ - [Additional Information](#additional-information)
1161
+ - [Dataset Curators](#dataset-curators)
1162
+ - [Licensing Information](#licensing-information)
1163
+ - [Citation Information](#citation-information)
1164
+ - [Contributions](#contributions)
1165
+
1166
+ ## Dataset Description
1167
+
1168
+ - **Homepage:** [NKJP1M](http://clip.ipipan.waw.pl/NationalCorpusOfPolish)
1169
+ - **Repository:** [NKJP1M-SGJP](http://download.sgjp.pl/morfeusz/current/)
1170
+ - **Paper:** [NKJP book](http://nkjp.pl/settings/papers/NKJP_ksiazka.pdf)
1171
+ - **Point of Contact:** mailto:morfeusz@ipipan.waw.pl
1172
+
1173
+ ### Dataset Summary
1174
+
1175
+ This is the official dataset for NKJP1M – the 1-million token balanced subcorpus of the National Corpus of Polish (Narodowy Korpus Języka Polskiego)
1176
+
1177
+ Besides the text (divided into paragraphs/samples and sentences) the set contains lemmas and morpho-syntactic tags for all tokens in the corpus.
1178
+
1179
+ This release, known as NKJP1M-SGJP, corresponds to the version 1.2 of the corpus with later corrections and improvements. In particular the morpho-syntactic annotation has been aligned with the present version of Morfeusz2 SGJP morphological analyser (as of 2022.12.04).
1180
+
1181
+ ### Supported Tasks and Leaderboards
1182
+
1183
+ The main use of this resource lays in training models for lemmatisation and part of speech tagging of Polish.
1184
+
1185
+ ### Languages
1186
+
1187
+ Polish (monolingual)
1188
+
1189
+ ## Dataset Structure
1190
+
1191
+ ### Data Instances
1192
+
1193
+ ```
1194
+ {'nkjp_text': 'NKJP_1M_1102000002',
1195
+ 'nkjp_par': 'morph_1-p',
1196
+ 'nkjp_sent': 'morph_1.18-s',
1197
+ 'tokens': ['-', 'Nie', 'mam', 'pieniędzy', ',', 'da', 'mi', 'pani', 'wywiad', '?'],
1198
+ 'lemmas': ['-', 'nie', 'mieć', 'pieniądz', ',', 'dać', 'ja', 'pani', 'wywiad', '?'],
1199
+ 'cposes': [8, 11, 10, 9, 8, 10, 9, 9, 9, 8],
1200
+ 'poses': [19, 25, 12, 35, 19, 12, 28, 35, 35, 19],
1201
+ 'tags': [266, 464, 213, 923, 266, 218, 692, 988, 961, 266],
1202
+ 'nps': [False, False, False, False, True, False, False, False, False, True],
1203
+ 'nkjp_ids': ['morph_1.9-seg', 'morph_1.10-seg', 'morph_1.11-seg', 'morph_1.12-seg', 'morph_1.13-seg', 'morph_1.14-seg', 'morph_1.15-seg', 'morph_1.16-seg', 'morph_1.17-seg', 'morph_1.18-seg']}
1204
+ ```
1205
+
1206
+ ### Data Fields
1207
+
1208
+ - `nkjp_text`, `nkjp_par`, `nkjp_sent` (strings): XML identifiers of the present text (document), paragraph and sentence in NKJP. (These allow to map the data point back to the source corpus and to identify paragraphs/samples.)
1209
+ - `tokens` (sequence of strings): tokens of the text defined as in NKJP.
1210
+ - `lemmas` (sequence of strings): lemmas corresponding to the tokens.
1211
+ - `tags` (sequence of labels): morpho-syntactic tags according to Morfeusz2 tagset (1019 distinct tags).
1212
+ - `poses` (sequence of labels): flexemic class (detailed part of speech, 40 classes) – the first element of the corresponding tag.
1213
+ - `cposes` (sequence of labels): coarse part of speech (13 classes): all verbal and deverbal flexemic classes get mapped to a `V`, nominal – `N`, adjectival – `A`, “strange” (abbreviations, alien elements, symbols, emojis…) – `X`, rest as in `poses`.
1214
+ - `nps` (sequence of booleans): `True` means that the corresponding token is not preceded by a space in the source text.
1215
+ - `nkjp_ids` (sequence of strings): XML identifiers of particular tokens in NKJP (probably an overkill).
1216
+
1217
+ ### Data Splits
1218
+
1219
+ | | Train | Validation | Test |
1220
+ | ----- | ------ | ----- | ---- |
1221
+ | sentences | 68943 | 7755 | 8964 |
1222
+ | tokens | 978368 | 112454 | 125059 |
1223
+
1224
+ ## Dataset Creation
1225
+
1226
+ ### Curation Rationale
1227
+
1228
+ The National Corpus of Polish (NKJP) was envisioned as the reference corpus of contemporary Polish.
1229
+
1230
+ The manually annotated subcorpus (NKJP1M) was thought of as the training data for various NLP tasks.
1231
+
1232
+ ### Source Data
1233
+
1234
+ NKJP is balanced with respect to Polish readership. The detailed rationale is described in Chapter 3 of the [NKJP book](http://nkjp.pl/settings/papers/NKJP_ksiazka.pdf) (roughly: 50% press, 30% books, 10% speech, 10% other). The corpus contains texts from the years 1945–2010 (with 80% of the text in the range 1990–2010). Only original Polish texts were gathered (no translations from other languages). The composition of NKJP1M follows this schema (see Chapter 5).
1235
+
1236
+ ### Annotations
1237
+
1238
+ The rules of morphosyntactic annotation used for NKJP are discussed in Chapter 6 of the [NKJP book](http://nkjp.pl/settings/papers/NKJP_ksiazka.pdf). Presently (2020), the corpus uses a common tagset with the morphological analyzer [Morfeusz 2](http://morfeusz.sgjp.pl/).
1239
+
1240
+ #### Annotation process
1241
+
1242
+ The texts were processed with Morfeusz and then the resulting annotations were manually disambiguated and validated/corrected. Each text sample was independently processed by two annotators. In case of annotation conflicts an adjudicator stepped in.
1243
+
1244
+ ### Licensing Information
1245
+
1246
+ ![Creative Commons License](https://i.creativecommons.org/l/by/4.0/80x15.png) This work is licensed under a [Creative Commons Attribution 4.0 International License](http://creativecommons.org/licenses/by/4.0/).
1247
+
1248
+ ### Citation Information
1249
+
1250
+ Info on the source corpus: [link](http://nkjp.pl/settings/papers/NKJP_ksiazka.pdf)
1251
+
1252
+ ```
1253
+ @Book{nkjp:12,
1254
+ editor = "Adam Przepiórkowski and Mirosław Bańko and Rafał
1255
+ L. Górski and Barbara Lewandowska-Tomaszczyk",
1256
+ title = "Narodowy Korpus Języka Polskiego",
1257
+ year = 2012,
1258
+ address = "Warszawa",
1259
+ pdf = "http://nkjp.pl/settings/papers/NKJP_ksiazka.pdf",
1260
+ publisher = "Wydawnictwo Naukowe PWN"}
1261
+ ```
1262
+
1263
+ Current annotation scheme: [link](https://jezyk-polski.pl/index.php/jp/article/view/72)
1264
+
1265
+ ```
1266
+ @article{
1267
+ kie:etal:21,
1268
+ author = "Kieraś, Witold and Woliński, Marcin and Nitoń, Bartłomiej",
1269
+ doi = "https://doi.org/10.31286/JP.101.2.5",
1270
+ title = "Nowe wielowarstwowe znakowanie lingwistyczne zrównoważonego {N}arodowego {K}orpusu {J}ęzyka {P}olskiego",
1271
+ url = "https://jezyk-polski.pl/index.php/jp/article/view/72",
1272
+ journal = "Język Polski",
1273
+ number = "2",
1274
+ volume = "CI",
1275
+ year = "2021",
1276
+ pages = "59--70"
1277
+ }
1278
+ ```
1279
+
1280
+ <!--
1281
+ ### Contributions
1282
+
1283
+ Thanks to [@github-username](https://github.com/<github-username>) for adding this dataset.
1284
+ -->
huggingface_dataset/Dataset_Card/irds_beir_msmarco_test.md ADDED
@@ -0,0 +1,63 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ pretty_name: '`beir/msmarco/test`'
3
+ viewer: false
4
+ source_datasets: ['irds/beir_msmarco']
5
+ task_categories:
6
+ - text-retrieval
7
+ ---
8
+
9
+ # Dataset Card for `beir/msmarco/test`
10
+
11
+ The `beir/msmarco/test` dataset, provided by the [ir-datasets](https://ir-datasets.com/) package.
12
+ For more information about the dataset, see the [documentation](https://ir-datasets.com/beir#beir/msmarco/test).
13
+
14
+ # Data
15
+
16
+ This dataset provides:
17
+ - `queries` (i.e., topics); count=43
18
+ - `qrels`: (relevance assessments); count=9,260
19
+
20
+ - For `docs`, use [`irds/beir_msmarco`](https://huggingface.co/datasets/irds/beir_msmarco)
21
+
22
+ ## Usage
23
+
24
+ ```python
25
+ from datasets import load_dataset
26
+
27
+ queries = load_dataset('irds/beir_msmarco_test', 'queries')
28
+ for record in queries:
29
+ record # {'query_id': ..., 'text': ...}
30
+
31
+ qrels = load_dataset('irds/beir_msmarco_test', 'qrels')
32
+ for record in qrels:
33
+ record # {'query_id': ..., 'doc_id': ..., 'relevance': ..., 'iteration': ...}
34
+
35
+ ```
36
+
37
+ Note that calling `load_dataset` will download the dataset (or provide access instructions when it's not public) and make a copy of the
38
+ data in 🤗 Dataset format.
39
+
40
+ ## Citation Information
41
+
42
+ ```
43
+ @inproceedings{Craswell2019TrecDl,
44
+ title={Overview of the TREC 2019 deep learning track},
45
+ author={Nick Craswell and Bhaskar Mitra and Emine Yilmaz and Daniel Campos and Ellen Voorhees},
46
+ booktitle={TREC 2019},
47
+ year={2019}
48
+ }
49
+ @inproceedings{Bajaj2016Msmarco,
50
+ title={MS MARCO: A Human Generated MAchine Reading COmprehension Dataset},
51
+ author={Payal Bajaj, Daniel Campos, Nick Craswell, Li Deng, Jianfeng Gao, Xiaodong Liu, Rangan Majumder, Andrew McNamara, Bhaskar Mitra, Tri Nguyen, Mir Rosenberg, Xia Song, Alina Stoica, Saurabh Tiwary, Tong Wang},
52
+ booktitle={InCoCo@NIPS},
53
+ year={2016}
54
+ }
55
+ @article{Thakur2021Beir,
56
+ title = "BEIR: A Heterogenous Benchmark for Zero-shot Evaluation of Information Retrieval Models",
57
+ author = "Thakur, Nandan and Reimers, Nils and Rücklé, Andreas and Srivastava, Abhishek and Gurevych, Iryna",
58
+ journal= "arXiv preprint arXiv:2104.08663",
59
+ month = "4",
60
+ year = "2021",
61
+ url = "https://arxiv.org/abs/2104.08663",
62
+ }
63
+ ```
huggingface_dataset/Dataset_Card/irds_mmarco_ru.md ADDED
@@ -0,0 +1,46 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ pretty_name: '`mmarco/ru`'
3
+ viewer: false
4
+ source_datasets: []
5
+ task_categories:
6
+ - text-retrieval
7
+ ---
8
+
9
+ # Dataset Card for `mmarco/ru`
10
+
11
+ The `mmarco/ru` dataset, provided by the [ir-datasets](https://ir-datasets.com/) package.
12
+ For more information about the dataset, see the [documentation](https://ir-datasets.com/mmarco#mmarco/ru).
13
+
14
+ # Data
15
+
16
+ This dataset provides:
17
+ - `docs` (documents, i.e., the corpus); count=8,841,823
18
+
19
+
20
+ This dataset is used by: [`mmarco_ru_dev`](https://huggingface.co/datasets/irds/mmarco_ru_dev), [`mmarco_ru_train`](https://huggingface.co/datasets/irds/mmarco_ru_train)
21
+
22
+
23
+ ## Usage
24
+
25
+ ```python
26
+ from datasets import load_dataset
27
+
28
+ docs = load_dataset('irds/mmarco_ru', 'docs')
29
+ for record in docs:
30
+ record # {'doc_id': ..., 'text': ...}
31
+
32
+ ```
33
+
34
+ Note that calling `load_dataset` will download the dataset (or provide access instructions when it's not public) and make a copy of the
35
+ data in 🤗 Dataset format.
36
+
37
+ ## Citation Information
38
+
39
+ ```
40
+ @article{Bonifacio2021MMarco,
41
+ title={{mMARCO}: A Multilingual Version of {MS MARCO} Passage Ranking Dataset},
42
+ author={Luiz Henrique Bonifacio and Israel Campiotti and Roberto Lotufo and Rodrigo Nogueira},
43
+ year={2021},
44
+ journal={arXiv:2108.13897}
45
+ }
46
+ ```
huggingface_dataset/Dataset_Card/merkalo-ziri_qa_shreded.md ADDED
@@ -0,0 +1,96 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ annotations_creators:
3
+ - found
4
+ language:
5
+ - rus
6
+ language_creators:
7
+ - found
8
+ license:
9
+ - other
10
+ multilinguality:
11
+ - monolingual
12
+ pretty_name: qa_main
13
+ size_categories:
14
+ - 1K<n<10K
15
+ source_datasets:
16
+ - original
17
+ tags: []
18
+ task_categories:
19
+ - question-answering
20
+ task_ids: []
21
+ ---
22
+ # Dataset Card for [Dataset Name]
23
+ ## Table of Contents
24
+ - [Table of Contents](#table-of-contents)
25
+ - [Dataset Description](#dataset-description)
26
+ - [Dataset Summary](#dataset-summary)
27
+ - [Supported Tasks and Leaderboards](#supported-tasks-and-leaderboards)
28
+ - [Languages](#languages)
29
+ - [Dataset Structure](#dataset-structure)
30
+ - [Data Instances](#data-instances)
31
+ - [Data Fields](#data-fields)
32
+ - [Data Splits](#data-splits)
33
+ - [Dataset Creation](#dataset-creation)
34
+ - [Curation Rationale](#curation-rationale)
35
+ - [Source Data](#source-data)
36
+ - [Annotations](#annotations)
37
+ - [Personal and Sensitive Information](#personal-and-sensitive-information)
38
+ - [Considerations for Using the Data](#considerations-for-using-the-data)
39
+ - [Social Impact of Dataset](#social-impact-of-dataset)
40
+ - [Discussion of Biases](#discussion-of-biases)
41
+ - [Other Known Limitations](#other-known-limitations)
42
+ - [Additional Information](#additional-information)
43
+ - [Dataset Curators](#dataset-curators)
44
+ - [Licensing Information](#licensing-information)
45
+ - [Citation Information](#citation-information)
46
+ - [Contributions](#contributions)
47
+ ## Dataset Description
48
+ - **Homepage:**
49
+ - **Repository:**
50
+ - **Paper:**
51
+ - **Leaderboard:**
52
+ - **Point of Contact:**
53
+ ### Dataset Summary
54
+ [More Information Needed]
55
+ ### Supported Tasks and Leaderboards
56
+ [More Information Needed]
57
+ ### Languages
58
+ [More Information Needed]
59
+ ## Dataset Structure
60
+ ### Data Instances
61
+ [More Information Needed]
62
+ ### Data Fields
63
+ [More Information Needed]
64
+ ### Data Splits
65
+ [More Information Needed]
66
+ ## Dataset Creation
67
+ ### Curation Rationale
68
+ [More Information Needed]
69
+ ### Source Data
70
+ #### Initial Data Collection and Normalization
71
+ [More Information Needed]
72
+ #### Who are the source language producers?
73
+ [More Information Needed]
74
+ ### Annotations
75
+ #### Annotation process
76
+ [More Information Needed]
77
+ #### Who are the annotators?
78
+ [More Information Needed]
79
+ ### Personal and Sensitive Information
80
+ [More Information Needed]
81
+ ## Considerations for Using the Data
82
+ ### Social Impact of Dataset
83
+ [More Information Needed]
84
+ ### Discussion of Biases
85
+ [More Information Needed]
86
+ ### Other Known Limitations
87
+ [More Information Needed]
88
+ ## Additional Information
89
+ ### Dataset Curators
90
+ [More Information Needed]
91
+ ### Licensing Information
92
+ [More Information Needed]
93
+ ### Citation Information
94
+ [More Information Needed]
95
+ ### Contributions
96
+ Thanks to [@github-username](https://github.com/<github-username>) for adding this dataset.
huggingface_dataset/Dataset_Card/qgallouedec_prj_gia_dataset_metaworld_pick_place_wall_v2_1111.md ADDED
@@ -0,0 +1,36 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ library_name: gia
3
+ tags:
4
+ - deep-reinforcement-learning
5
+ - reinforcement-learning
6
+ - gia
7
+ - multi-task
8
+ - multi-modal
9
+ - imitation-learning
10
+ - offline-reinforcement-learning
11
+ ---
12
+
13
+ An imitation learning environment for the pick-place-wall-v2 environment, sample for the policy pick-place-wall-v2
14
+
15
+ This environment was created as part of the Generally Intelligent Agents project gia: https://github.com/huggingface/gia
16
+
17
+
18
+
19
+
20
+ ## Load dataset
21
+
22
+ First, clone it with
23
+
24
+ ```sh
25
+ git clone https://huggingface.co/datasets/qgallouedec/prj_gia_dataset_metaworld_pick_place_wall_v2_1111
26
+ ```
27
+
28
+ Then, load it with
29
+
30
+ ```python
31
+ import numpy as np
32
+ dataset = np.load("prj_gia_dataset_metaworld_pick_place_wall_v2_1111/dataset.npy", allow_pickle=True).item()
33
+ print(dataset.keys()) # dict_keys(['observations', 'actions', 'dones', 'rewards'])
34
+ ```
35
+
36
+
huggingface_dataset/Dataset_Card/ro_sts.md ADDED
@@ -0,0 +1,180 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ annotations_creators:
3
+ - crowdsourced
4
+ language_creators:
5
+ - crowdsourced
6
+ language:
7
+ - ro
8
+ license:
9
+ - cc-by-4.0
10
+ multilinguality:
11
+ - monolingual
12
+ size_categories:
13
+ - 1K<n<10K
14
+ source_datasets:
15
+ - extended|other-sts-b
16
+ task_categories:
17
+ - text-classification
18
+ task_ids:
19
+ - text-scoring
20
+ - semantic-similarity-scoring
21
+ paperswithcode_id: null
22
+ pretty_name: RO-STS
23
+ dataset_info:
24
+ features:
25
+ - name: score
26
+ dtype: float32
27
+ - name: sentence1
28
+ dtype: string
29
+ - name: sentence2
30
+ dtype: string
31
+ config_name: ro_sts
32
+ splits:
33
+ - name: train
34
+ num_bytes: 879073
35
+ num_examples: 5749
36
+ - name: test
37
+ num_bytes: 194330
38
+ num_examples: 1379
39
+ - name: validation
40
+ num_bytes: 245926
41
+ num_examples: 1500
42
+ download_size: 1267607
43
+ dataset_size: 1319329
44
+ ---
45
+
46
+ # Dataset Card for RO-STS
47
+
48
+ ## Table of Contents
49
+ - [Dataset Description](#dataset-description)
50
+ - [Dataset Summary](#dataset-summary)
51
+ - [Supported Tasks and Leaderboards](#supported-tasks-and-leaderboards)
52
+ - [Languages](#languages)
53
+ - [Dataset Structure](#dataset-structure)
54
+ - [Data Instances](#data-instances)
55
+ - [Data Fields](#data-fields)
56
+ - [Data Splits](#data-splits)
57
+ - [Dataset Creation](#dataset-creation)
58
+ - [Curation Rationale](#curation-rationale)
59
+ - [Source Data](#source-data)
60
+ - [Annotations](#annotations)
61
+ - [Personal and Sensitive Information](#personal-and-sensitive-information)
62
+ - [Considerations for Using the Data](#considerations-for-using-the-data)
63
+ - [Social Impact of Dataset](#social-impact-of-dataset)
64
+ - [Discussion of Biases](#discussion-of-biases)
65
+ - [Other Known Limitations](#other-known-limitations)
66
+ - [Additional Information](#additional-information)
67
+ - [Dataset Curators](#dataset-curators)
68
+ - [Licensing Information](#licensing-information)
69
+ - [Citation Information](#citation-information)
70
+ - [Contributions](#contributions)
71
+
72
+ ## Dataset Description
73
+
74
+ - **Homepage:** [GitHub](https://github.com/dumitrescustefan/RO-STS)
75
+ - **Repository:** [GitHub](https://github.com/dumitrescustefan/RO-STS)
76
+ - **Paper:** [Needs More Information]
77
+ - **Leaderboard:** [Needs More Information]
78
+ - **Point of Contact:** [email](dumitrescu.stefan@gmail.com)
79
+
80
+ ### Dataset Summary
81
+
82
+ We present RO-STS - the Semantic Textual Similarity dataset for the Romanian language. It is a high-quality translation of the [STS English dataset](https://ixa2.si.ehu.eus/stswiki/index.php/STSbenchmark). RO-STS contains 8,628 sentence pairs with their similarity scores. The original English sentences were collected from news headlines, captions of images and user forums, and are categorized accordingly. The Romanian release follows this categorization and provides the same train/validation/test split with 5,749/1,500/1,379 sentence pairs in each subset.
83
+
84
+ ### Supported Tasks and Leaderboards
85
+
86
+ [Needs More Information]
87
+
88
+ ### Languages
89
+
90
+ The text dataset is in Romanian (`ro`)
91
+
92
+ ## Dataset Structure
93
+
94
+ ### Data Instances
95
+
96
+ An example looks like this:
97
+
98
+ ```
99
+ {'score': 1.5,
100
+ 'sentence1': 'Un bărbat cântă la harpă.',
101
+ 'sentence2': 'Un bărbat cântă la claviatură.',
102
+ }
103
+ ```
104
+
105
+ ### Data Fields
106
+
107
+ - `score`: a float representing the semantic similarity score where 0.0 is the lowest score and 5.0 is the highest
108
+ - `sentence1`: a string representing a text
109
+ - `sentence2`: another string to compare the previous text with
110
+
111
+ ### Data Splits
112
+
113
+ The train/validation/test split contain 5,749/1,500/1,379 sentence pairs.
114
+
115
+ ## Dataset Creation
116
+
117
+ ### Curation Rationale
118
+
119
+ [Needs More Information]
120
+
121
+ ### Source Data
122
+
123
+ [Needs More Information]
124
+
125
+ #### Initial Data Collection and Normalization
126
+
127
+ *To construct the dataset, we first obtained automatic translations using Google's translation engine. These were then manually checked, corrected, and cross-validated by human volunteers. *
128
+
129
+ #### Who are the source language producers?
130
+
131
+ [Needs More Information]
132
+
133
+ ### Annotations
134
+
135
+ #### Annotation process
136
+
137
+ #### Who are the annotators?
138
+
139
+ ### Personal and Sensitive Information
140
+
141
+ [Needs More Information]
142
+
143
+ ## Considerations for Using the Data
144
+
145
+ ### Social Impact of Dataset
146
+
147
+ [Needs More Information]
148
+
149
+ ### Discussion of Biases
150
+
151
+ [Needs More Information]
152
+
153
+ ### Other Known Limitations
154
+
155
+ [Needs More Information]
156
+
157
+ ## Additional Information
158
+
159
+ ### Dataset Curators
160
+
161
+ [Needs More Information]
162
+
163
+ ### Licensing Information
164
+
165
+ CC BY-SA 4.0 License
166
+
167
+ ### Citation Information
168
+
169
+ ```
170
+ @inproceedings{dumitrescu2021liro,
171
+ title={Liro: Benchmark and leaderboard for romanian language tasks},
172
+ author={Dumitrescu, Stefan Daniel and Rebeja, Petru and Lorincz, Beata and Gaman, Mihaela and Avram, Andrei and Ilie, Mihai and Pruteanu, Andrei and Stan, Adriana and Rosia, Lorena and Iacobescu, Cristina and others},
173
+ booktitle={Thirty-fifth Conference on Neural Information Processing Systems Datasets and Benchmarks Track (Round 1)},
174
+ year={2021}
175
+ }
176
+ ```
177
+
178
+ ### Contributions
179
+
180
+ Thanks to [@lorinczb](https://github.com/lorinczb) for adding this dataset.
huggingface_dataset/Dataset_Card/society-ethics_papers.md ADDED
@@ -0,0 +1,30 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ tags:
3
+ - ethics
4
+ ---
5
+ # Hugging Face Ethics & Society Papers
6
+
7
+ This is an incomplete list of ethics-related papers published by researchers at Hugging Face.
8
+
9
+ - Gradio: https://arxiv.org/abs/1906.02569
10
+ - DistilBERT: http://arxiv.org/abs/1910.01108
11
+ - RAFT: https://arxiv.org/abs/2109.14076
12
+ - Interactive Model Cards: https://arxiv.org/abs/2205.02894
13
+ - Data Governance in the Age of Large-Scale Data-Driven Language Technology: https://arxiv.org/abs/2206.03216
14
+ - Quality at a Glance: https://arxiv.org/abs/2103.12028
15
+ - A Framework for Deprecating Datasets: https://arxiv.org/abs/2111.04424
16
+ - Bugs in the Data: http://arxiv.org/abs/2208.11695
17
+ - Measuring Data: http://arxiv.org/abs/2212.05129
18
+ - Perturbation Augmentation for Fairer NLP: http://arxiv.org/abs/2205.12586
19
+ - SEAL: http://arxiv.org/abs/2210.05839
20
+ - Multitask Prompted Training Enables Zero-Shot Task Generalization: http://arxiv.org/abs/2110.08207
21
+ - BLOOM: https://arxiv.org/abs/2211.05100
22
+ - ROOTS: https://arxiv.org/abs/2303.03915
23
+ - Evaluate & Evaluation on the Hub: http://arxiv.org/abs/2210.01970
24
+ - Spacerini: http://arxiv.org/abs/2302.14534
25
+ - ROOTS Search Tool: https://arxiv.org/abs/2302.14035
26
+ - Fair Diffusion: http://arxiv.org/abs/2302.10893
27
+ - Counting Carbon: http://arxiv.org/abs/2302.08476
28
+ - The Gradient of Generative AI Release: http://arxiv.org/abs/2302.04844
29
+ - BigScience: A Case Study in the Social Construction of a Multilingual Large Language Model: https://arxiv.org/abs/2212.04960
30
+ - Towards Openness Beyond Open Access: User Journeys through 3 Open AI Collaboratives: https://arxiv.org/abs/2301.08488
huggingface_dataset/Dataset_Card/tomekkorbak_pile-chunk-toxicity-scored-3.md ADDED
@@ -0,0 +1 @@
 
 
1
+ A chunk 3 of the Pile (2.2m documents) scored using the Perspective API (on May 18-20 2022)
huggingface_dataset/Dataset_Card/trustwallet_24.md ADDED
@@ -0,0 +1,4 @@
 
 
 
 
 
1
+ ---
2
+ license: artistic-2.0
3
+ ---
4
+ crypto Trust**wallet customer service Support Number +**1-**818-869-**2884