Datasets:
Tasks:
Text Classification
Modalities:
Text
Formats:
json
Languages:
Polish
Size:
10K - 100K
License:
Sławomir Dadas
commited on
Commit
•
c02596c
1
Parent(s):
d0bb8b0
Added dataset card
Browse files
README.md
CHANGED
@@ -1,3 +1,74 @@
|
|
1 |
---
|
2 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
---
|
2 |
+
language:
|
3 |
+
- pl
|
4 |
+
license:
|
5 |
+
- cc-by-nc-sa-4.0
|
6 |
+
multilinguality:
|
7 |
+
- monolingual
|
8 |
+
size_categories:
|
9 |
+
- 10K<n<100K
|
10 |
+
task_categories:
|
11 |
+
- text-classification
|
12 |
+
task_ids:
|
13 |
+
- topic-classification
|
14 |
+
pretty_name: 8TAGS
|
15 |
+
dataset_info:
|
16 |
+
features:
|
17 |
+
- name: sentence
|
18 |
+
dtype: string
|
19 |
+
- name: label
|
20 |
+
dtype:
|
21 |
+
class_label:
|
22 |
+
names:
|
23 |
+
0: film
|
24 |
+
1: history
|
25 |
+
2: food
|
26 |
+
3: medicine
|
27 |
+
4: motorization
|
28 |
+
5: work
|
29 |
+
6: sport
|
30 |
+
7: technology
|
31 |
+
splits:
|
32 |
+
- name: train
|
33 |
+
- name: validation
|
34 |
+
- name: test
|
35 |
---
|
36 |
+
|
37 |
+
# 8TAGS
|
38 |
+
|
39 |
+
### Dataset Summary
|
40 |
+
|
41 |
+
A Polish topic classification dataset consisting of headlines from social media posts. It contains about 50,000 sentences annotated with 8 topic labels: film, history, food, medicine, motorization, work, sport and technology. This dataset was created automatically by extracting sentences from headlines and short descriptions of articles posted on Polish social networking site **wykop.pl**. The service allows users to annotate articles with one or more tags (categories). Dataset represents a selection of article sentences from 8 popular categories. The resulting corpus contains cleaned and tokenized, unambiguous sentences (tagged with only one of the selected categories), and longer than 30 characters.
|
42 |
+
|
43 |
+
### Data Instances
|
44 |
+
|
45 |
+
Example instance:
|
46 |
+
```
|
47 |
+
{
|
48 |
+
"sentence": "Kierowca był nieco zdziwiony że podróżując sporo ponad 200 km / h zatrzymali go policjanci.",
|
49 |
+
"label": "4"
|
50 |
+
}
|
51 |
+
```
|
52 |
+
|
53 |
+
### Data Fields
|
54 |
+
|
55 |
+
- sentence: sentence text
|
56 |
+
- label: label identifier corresponding to one of 8 topics
|
57 |
+
|
58 |
+
### Citation Information
|
59 |
+
|
60 |
+
```
|
61 |
+
@inproceedings{dadas-etal-2020-evaluation,
|
62 |
+
title = "Evaluation of Sentence Representations in {P}olish",
|
63 |
+
author = "Dadas, Slawomir and Pere{\l}kiewicz, Micha{\l} and Po{\'s}wiata, Rafa{\l}",
|
64 |
+
booktitle = "Proceedings of the 12th Language Resources and Evaluation Conference",
|
65 |
+
month = may,
|
66 |
+
year = "2020",
|
67 |
+
address = "Marseille, France",
|
68 |
+
publisher = "European Language Resources Association",
|
69 |
+
url = "https://aclanthology.org/2020.lrec-1.207",
|
70 |
+
pages = "1674--1680",
|
71 |
+
language = "English",
|
72 |
+
ISBN = "979-10-95546-34-4",
|
73 |
+
}
|
74 |
+
```
|