Datasets:
Commit
·
8067832
1
Parent(s):
d32236e
Update README.md
Browse files
README.md
CHANGED
@@ -18,4 +18,74 @@ dataset_info:
|
|
18 |
num_examples: 2957
|
19 |
download_size: 2871765
|
20 |
dataset_size: 2652674
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
21 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
18 |
num_examples: 2957
|
19 |
download_size: 2871765
|
20 |
dataset_size: 2652674
|
21 |
+
task_categories:
|
22 |
+
- token-classification
|
23 |
+
language:
|
24 |
+
- sl
|
25 |
+
tags:
|
26 |
+
- code-mixed
|
27 |
+
- nonstandard
|
28 |
+
- ner
|
29 |
+
size_categories:
|
30 |
+
- 1K<n<10K
|
31 |
---
|
32 |
+
|
33 |
+
# Dataset Card for Janes-Tag
|
34 |
+
|
35 |
+
### Dataset Summary
|
36 |
+
|
37 |
+
Janes-Tag is a manually annotated corpus of Slovene Computer-Mediated Communication (CMC) consisting of mostly tweets but also blogs, forums and news comments.
|
38 |
+
|
39 |
+
### Languages
|
40 |
+
|
41 |
+
Code-switched/nonstandard Slovenian.
|
42 |
+
|
43 |
+
## Dataset Structure
|
44 |
+
|
45 |
+
### Data Instances
|
46 |
+
|
47 |
+
A sample instance from the dataset - each word is annotated with its form (`word`), lemma, MSD tag (XPOS), and IOB2-encoded named entity tag.
|
48 |
+
```
|
49 |
+
{
|
50 |
+
'id': 'janes.news.rtvslo.279732.2',
|
51 |
+
'words': ['Jst', 'mam', 'tud', 'dons', 'rojstn', 'dan', '.'],
|
52 |
+
'lemmas': ['jaz', 'imeti', 'tudi', 'danes', 'rojsten', 'dan', '.'],
|
53 |
+
'msds': ['mte:Pp1-sn', 'mte:Vmpr1s-n', 'mte:Q', 'mte:Rgp', 'mte:Agpmsay', 'mte:Ncmsan', 'mte:Z'],
|
54 |
+
'nes': ['O', 'O', 'O', 'O', 'O', 'O', 'O']
|
55 |
+
}
|
56 |
+
```
|
57 |
+
|
58 |
+
### Data Fields
|
59 |
+
|
60 |
+
- `id`: unique identifier of the example;
|
61 |
+
- `words`: words in the example;
|
62 |
+
- `lemmas`: lemmas in the example;
|
63 |
+
- `msds`: msds in the example;
|
64 |
+
- `nes`: IOB2-encoded named entity tag (person, location, organization, misc, other)
|
65 |
+
|
66 |
+
## Additional Information
|
67 |
+
|
68 |
+
### Dataset Curators
|
69 |
+
|
70 |
+
Jakob Lenardič et al. (please see http://hdl.handle.net/11356/1732 for the full list)
|
71 |
+
|
72 |
+
### Licensing Information
|
73 |
+
|
74 |
+
CC BY-SA 4.0.
|
75 |
+
|
76 |
+
### Citation Information
|
77 |
+
|
78 |
+
```
|
79 |
+
@misc{janes_tag,
|
80 |
+
title = {{CMC} training corpus Janes-Tag 3.0},
|
81 |
+
author = {Lenardi{\v c}, Jakob and {\v C}ibej, Jaka and Arhar Holdt, {\v S}pela and Erjavec, Toma{\v z} and Fi{\v s}er, Darja and Ljube{\v s}i{\'c}, Nikola and Zupan, Katja and Dobrovoljc, Kaja},
|
82 |
+
url = {http://hdl.handle.net/11356/1732},
|
83 |
+
note = {Slovenian language resource repository {CLARIN}.{SI}},
|
84 |
+
copyright = {Creative Commons - Attribution-{ShareAlike} 4.0 International ({CC} {BY}-{SA} 4.0)},
|
85 |
+
year = {2022}
|
86 |
+
}
|
87 |
+
```
|
88 |
+
|
89 |
+
### Contributions
|
90 |
+
|
91 |
+
Thanks to [@matejklemen](https://github.com/matejklemen) for adding this dataset.
|