Datasets:
Tasks:
Text Classification
Modalities:
Text
Formats:
parquet
Languages:
English
Size:
10K - 100K
License:
Upload folder using huggingface_hub
Browse files- README.md +92 -0
- balance_report.json +0 -0
- fetch_log.parquet +3 -0
- test.parquet +3 -0
- train.parquet +3 -0
- validation.parquet +3 -0
README.md
ADDED
|
@@ -0,0 +1,92 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
language:
|
| 3 |
+
- en
|
| 4 |
+
license: cc-by-4.0
|
| 5 |
+
task_categories:
|
| 6 |
+
- text-classification
|
| 7 |
+
task_ids:
|
| 8 |
+
- topic-classification
|
| 9 |
+
- sentiment-classification
|
| 10 |
+
tags:
|
| 11 |
+
- linguistics
|
| 12 |
+
- ukraine
|
| 13 |
+
- toponyms
|
| 14 |
+
- language-policy
|
| 15 |
+
- kyivnotkiev
|
| 16 |
+
size_categories:
|
| 17 |
+
- 10K<n<100K
|
| 18 |
+
---
|
| 19 |
+
|
| 20 |
+
# KyivNotKiev Computational Linguistics Corpus
|
| 21 |
+
|
| 22 |
+
A balanced, labeled corpus of texts containing Ukrainian and Russian toponym variants
|
| 23 |
+
(e.g., "Kyiv" vs "Kiev"), annotated with context categories and sentiment.
|
| 24 |
+
|
| 25 |
+
## Dataset Description
|
| 26 |
+
|
| 27 |
+
- **Curated by:** Ivan Dobrovolskyi
|
| 28 |
+
- **Language:** Primarily English
|
| 29 |
+
- **License:** CC-BY 4.0
|
| 30 |
+
- **Paper:** #KyivNotKiev: A Large-Scale Computational Study of Ukrainian Toponym Adoption (forthcoming)
|
| 31 |
+
- **Website:** https://kyivnotkiev.org
|
| 32 |
+
|
| 33 |
+
## Dataset Summary
|
| 34 |
+
|
| 35 |
+
29,938 texts across 55 Ukrainian-Russian toponym pairs from 4 sources
|
| 36 |
+
(Reddit, YouTube, GDELT news articles). Each text is labeled with:
|
| 37 |
+
- **Context category**: politics, war_conflict, sports, culture_arts, food_cuisine, travel_tourism, academic_science, history, business_economy, general_news
|
| 38 |
+
- **Sentiment**: positive, neutral, negative
|
| 39 |
+
- **Variant**: which toponym form (russian/ukrainian) appears in the text
|
| 40 |
+
|
| 41 |
+
## Intended Uses
|
| 42 |
+
|
| 43 |
+
- Studying language policy adoption in media and social platforms
|
| 44 |
+
- Training toponym context classifiers
|
| 45 |
+
- Analyzing sentiment differences between spelling variants
|
| 46 |
+
- Cross-source and temporal analysis of naming conventions
|
| 47 |
+
|
| 48 |
+
## Dataset Structure
|
| 49 |
+
|
| 50 |
+
### Data Fields
|
| 51 |
+
- `pair_id`: Integer ID of the toponym pair
|
| 52 |
+
- `text`: The full text content
|
| 53 |
+
- `variant`: "russian" or "ukrainian" — which spelling form appears
|
| 54 |
+
- `source`: Data source (reddit, youtube, gdelt)
|
| 55 |
+
- `year`: Publication year
|
| 56 |
+
- `context_label`: Annotated context category
|
| 57 |
+
- `context_confidence`: Annotation confidence (0-1)
|
| 58 |
+
- `sentiment_label`: Sentiment annotation
|
| 59 |
+
- `sentiment_score`: Sentiment score (-1 to 1)
|
| 60 |
+
- `word_count`: Number of words in text
|
| 61 |
+
- `matched_term`: The specific toponym form found in text
|
| 62 |
+
|
| 63 |
+
### Splits
|
| 64 |
+
| Split | Count |
|
| 65 |
+
|-------|-------|
|
| 66 |
+
| train | 23,950 |
|
| 67 |
+
| validation | 2,993 |
|
| 68 |
+
| test | 2,993 |
|
| 69 |
+
|
| 70 |
+
## Balance Report
|
| 71 |
+
|
| 72 |
+
See `balance_report.json` for detailed per-pair, per-source, per-variant distributions
|
| 73 |
+
and documented shortfalls.
|
| 74 |
+
|
| 75 |
+
## Collection Methodology
|
| 76 |
+
|
| 77 |
+
1. **Reddit**: Titles and bodies from Arctic Shift API + Reddit search (2010-2026)
|
| 78 |
+
2. **YouTube**: Video titles and descriptions via yt-dlp (2010-2026)
|
| 79 |
+
3. **GDELT**: News article bodies fetched from URLs using trafilatura (2010-2026)
|
| 80 |
+
4. **Balancing**: Stratified sampling by pair × source × variant × year stratum
|
| 81 |
+
5. **Annotation**: Llama 3.1 70B-Instruct with human validation on 200 random samples
|
| 82 |
+
6. **Fetch transparency**: All GDELT URL fetch attempts logged in `fetch_log.parquet`
|
| 83 |
+
|
| 84 |
+
## Citation
|
| 85 |
+
|
| 86 |
+
```bibtex
|
| 87 |
+
@article{dobrovolskyi2026kyivnotkiev,
|
| 88 |
+
title={#KyivNotKiev: A Large-Scale Computational Study of Ukrainian Toponym Adoption},
|
| 89 |
+
author={Dobrovolskyi, Ivan},
|
| 90 |
+
year={2026}
|
| 91 |
+
}
|
| 92 |
+
```
|
balance_report.json
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
fetch_log.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:276318ed00df24b29ada028c55e1035ba06f5a78c90c5330ebd018b7ba4c45ab
|
| 3 |
+
size 808079
|
test.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:ae26e269c77a2cc97a8c5018ddbde4a87fc9a61cf2140b24b600fbd6608e947d
|
| 3 |
+
size 2562293
|
train.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:2949ff8ae4d43a5134f36f8be439cb6460936f4c8282f7433a86197e38d22a66
|
| 3 |
+
size 21591456
|
validation.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:5f905ffb0432e37e507a8b99575534fa07def6bdb3af8565fa82cd388a4e389c
|
| 3 |
+
size 2574833
|