Datasets:
Tasks:
Text Classification
Modalities:
Text
Formats:
parquet
Sub-tasks:
multi-class-classification
Languages:
French
Size:
1K - 10K
License:
File size: 3,979 Bytes
f48cff4 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 | ---
license: other
task_categories:
- text-classification
task_ids:
- multi-class-classification
language:
- fr
multilinguality:
- monolingual
size_categories:
- 1K<n<10K
pretty_name: FrenchModernPoetryStyleClassification
tags:
- poetry
- french
- style-classification
- literary-movement
- symbolisme
- romantisme
- parnasse
- mteb
- poetrymteb
- embedding-evaluation
annotations_creators:
- expert-generated
source_datasets:
- wkwg429/FrenchLiteratureTextClassification
configs:
- config_name: default
data_files:
- split: train
path: data/train-*
- split: test
path: data/test-*
default: true
dataset_info:
- config_name: default
features:
- name: id
dtype: string
- name: poem
dtype: string
- name: label
dtype: int64
- name: label_name
dtype: string
splits:
- name: train
num_examples: 1143
- name: test
num_examples: 494
---
# FrenchModernPoetryStyleClassification
Single-label **French poetry literary-style / movement classification** for PoetryMTEB, derived from [FrenchLiteratureTextClassification](https://github.com/wkwg429/FrenchLiteratureTextClassification) (Yang, Wang & Wang, *Information* 2024).
Three classes: **Parnasse** (classical lyric), **Romantisme**, **Symbolisme** (modernist).
## Dataset Card
| Item | Description |
|------|-------------|
| **Source** | [https://github.com/wkwg429/FrenchLiteratureTextClassification](https://github.com/wkwg429/FrenchLiteratureTextClassification) |
| **Paper** | [Reimagining Literary Analysis: Utilizing Artificial Intelligence to Classify Modernist French Poetry](https://www.mdpi.com/2078-2489/15/2/70) ([DOI 10.3390/info15020070](https://doi.org/10.3390/info15020070)) |
| **Languages** | French (`fr`) |
| **Unit** | Poem text (`poem`; upstream field `content`) |
| **Classes** | 3 literary styles / movements |
| **Size** | train=1143; test=494 |
| **Splits** | Upstream `train_set.csv` / `test_set.csv`; train texts that exactly match any test poem were **removed** (9 dropped) to avoid leakage |
| **Text note** | Upstream preprocessing: typically lowercased French with diacritics removed |
| **Evaluation metrics** | Classification on embeddings: **accuracy**, **macro/weighted F1** |
## Label taxonomy (3)
| id | label_name | name_zh | gloss | train | test | total |
|---:|------------|---------|-------|------:|-----:|------:|
| 0 | `Parnasse` | 古典抒情 | Parnassian / classical lyric style | 387 | 171 | 558 |
| 1 | `Romantisme` | 浪漫主义 | Romanticism | 448 | 183 | 631 |
| 2 | `Symbolisme` | 现代主义 | Symbolism / modernist French poetry | 308 | 140 | 448 |
Codebook: `label_taxonomy.json`.
## Features
| Field | Type | Description |
|-------|------|-------------|
| `id` | string | Example id |
| `poem` | string | Poem body (preprocessed French) |
| `label` | int64 | Class index 0–2 |
| `label_name` | string | `Parnasse` / `Romantisme` / `Symbolisme` |
## Construction method
1. Load upstream `ml/data/french/train_set.csv` and `test_set.csv` (`genre`, `content`).
2. Map `genre` ids to readable movement names (same mapping as upstream TF-IDF/Doc2Vec scripts).
3. Drop train rows whose `poem` text exactly equals any test poem.
4. Export parquet splits for PoetryMTEB embedding classification.
## Citation
```bibtex
@Article{info15020070,
AUTHOR = {Yang, Liu and Wang, Gang and Wang, Hongjun},
TITLE = {Reimagining Literary Analysis: Utilizing Artificial Intelligence to Classify Modernist French Poetry},
JOURNAL = {Information},
VOLUME = {15},
YEAR = {2024},
NUMBER = {2},
ARTICLE-NUMBER = {70},
URL = {https://www.mdpi.com/2078-2489/15/2/70},
ISSN = {2078-2489},
DOI = {10.3390/info15020070}
}
```
Upstream code/data: https://github.com/wkwg429/FrenchLiteratureTextClassification
## License
Follow the upstream GitHub repository and MDPI article terms for reuse.
|