Add Serbian Lyric Poetry Classification dataset (train/test split 6:4)
Browse files- README.md +67 -1
- dataset_infos.yaml +24 -0
- test-00000-of-00001.parquet +3 -0
- train-00000-of-00001.parquet +3 -0
README.md
CHANGED
|
@@ -1,3 +1,69 @@
|
|
| 1 |
---
|
| 2 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 3 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
---
|
| 2 |
+
dataset_info:
|
| 3 |
+
features:
|
| 4 |
+
- name: id
|
| 5 |
+
dtype: string
|
| 6 |
+
- name: text
|
| 7 |
+
dtype: string
|
| 8 |
+
- name: labels
|
| 9 |
+
dtype: list
|
| 10 |
+
splits:
|
| 11 |
+
- name: train
|
| 12 |
+
num_bytes: 483454
|
| 13 |
+
num_examples: 680
|
| 14 |
+
- name: test
|
| 15 |
+
num_bytes: 334367
|
| 16 |
+
num_examples: 454
|
| 17 |
+
download_size: 1139139
|
| 18 |
+
dataset_size: 817821
|
| 19 |
+
configs:
|
| 20 |
+
- config_name: default
|
| 21 |
+
data_files:
|
| 22 |
+
- split: train
|
| 23 |
+
path: train-*.parquet
|
| 24 |
+
- split: test
|
| 25 |
+
path: test-*.parquet
|
| 26 |
---
|
| 27 |
+
|
| 28 |
+
# Serbian Lyric Poetry Classification
|
| 29 |
+
|
| 30 |
+
This dataset contains Serbian lyric poetry with multi-label classification. Each poem can have multiple labels.
|
| 31 |
+
|
| 32 |
+
## Dataset Information
|
| 33 |
+
|
| 34 |
+
The dataset is split into train (60%) and test (40%) sets with stratified sampling based on the primary label (first label) to ensure balanced distribution.
|
| 35 |
+
|
| 36 |
+
## Data Format
|
| 37 |
+
|
| 38 |
+
The dataset is stored in Parquet format with the following fields:
|
| 39 |
+
|
| 40 |
+
- `id`: Unique identifier
|
| 41 |
+
- `text`: Poem text
|
| 42 |
+
- `labels`: List of labels (multi-label format)
|
| 43 |
+
|
| 44 |
+
## Labels
|
| 45 |
+
|
| 46 |
+
The dataset contains the following labels:
|
| 47 |
+
- Ljubavna poezija (Love poetry)
|
| 48 |
+
- Misaono - refleksivna poezija (Reflective poetry)
|
| 49 |
+
- Rodoljubiva poezija (Patriotic poetry)
|
| 50 |
+
|
| 51 |
+
A poem can have multiple labels (multi-label classification).
|
| 52 |
+
|
| 53 |
+
## Citation
|
| 54 |
+
|
| 55 |
+
If you use this dataset, please cite the following paper:
|
| 56 |
+
|
| 57 |
+
```
|
| 58 |
+
@INPROCEEDINGS{10819147,
|
| 59 |
+
author={Kadić, Vasilije and Milanović, Sara and Batanović, Vuk},
|
| 60 |
+
booktitle={2024 32nd Telecommunications Forum (TELFOR)},
|
| 61 |
+
title={Classification of Lyric Poetry Written in Serbian},
|
| 62 |
+
year={2024},
|
| 63 |
+
volume={},
|
| 64 |
+
number={},
|
| 65 |
+
pages={1-4},
|
| 66 |
+
keywords={Large language models;Machine learning;Natural language processing;Distance measurement;Telecommunications;lyric poetry;text classification;natural language processing},
|
| 67 |
+
doi={10.1109/TELFOR63250.2024.10819147}
|
| 68 |
+
}
|
| 69 |
+
```
|
dataset_infos.yaml
ADDED
|
@@ -0,0 +1,24 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
dataset_info:
|
| 2 |
+
features:
|
| 3 |
+
- name: id
|
| 4 |
+
dtype: string
|
| 5 |
+
- name: text
|
| 6 |
+
dtype: string
|
| 7 |
+
- name: labels
|
| 8 |
+
dtype: list
|
| 9 |
+
splits:
|
| 10 |
+
- name: train
|
| 11 |
+
num_bytes: 483454
|
| 12 |
+
num_examples: 680
|
| 13 |
+
- name: test
|
| 14 |
+
num_bytes: 334367
|
| 15 |
+
num_examples: 454
|
| 16 |
+
download_size: 1139139
|
| 17 |
+
dataset_size: 817821
|
| 18 |
+
configs:
|
| 19 |
+
- config_name: default
|
| 20 |
+
data_files:
|
| 21 |
+
- split: train
|
| 22 |
+
path: train-*.parquet
|
| 23 |
+
- split: test
|
| 24 |
+
path: test-*.parquet
|
test-00000-of-00001.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:412bbf7ec7cf68d544c93fda564a876acc423605063a2b5d91bbce548438715d
|
| 3 |
+
size 334367
|
train-00000-of-00001.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:d996b6ef79f4e508a66b5af535a5097e7176b80dd87ceb45578efee5332b28ee
|
| 3 |
+
size 483454
|