Update README.md
Browse files
README.md
CHANGED
|
@@ -25,3 +25,50 @@ configs:
|
|
| 25 |
- split: test
|
| 26 |
path: data/test-*
|
| 27 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 25 |
- split: test
|
| 26 |
path: data/test-*
|
| 27 |
---
|
| 28 |
+
|
| 29 |
+
|
| 30 |
+
**SwissNER-Spoken** is a curated collection of 173 short, spoken-style German sentences
|
| 31 |
+
designed to evaluate Named-Entity Recognition (NER) and Automatic Speech Recognition (ASR)
|
| 32 |
+
systems on Swiss-specific proper nouns.
|
| 33 |
+
|
| 34 |
+
Key features
|
| 35 |
+
------------
|
| 36 |
+
• **Focus on Switzerland** – Every sentence contains up to three named entities that appear
|
| 37 |
+
in everyday Swiss contexts: cities, villages, cantons, companies, mountains, lakes,
|
| 38 |
+
rivers, landmarks, organizations, events and well-known personalities.
|
| 39 |
+
|
| 40 |
+
• **Balanced regional coverage** – All 26 Swiss cantons are represented, with entities
|
| 41 |
+
drawn from German-, French-, Italian- and Romansh-speaking areas.
|
| 42 |
+
|
| 43 |
+
• **Multilingual entity labels** – For each entity, the dataset records the language of the
|
| 44 |
+
_name_ (``de``, ``fr``, ``it``, ``rm`` or ``en``) so models can test language-aware
|
| 45 |
+
recognition.
|
| 46 |
+
|
| 47 |
+
• **Compact schema** – Four CSV columns:
|
| 48 |
+
1. ``text`` – the sentence in German.
|
| 49 |
+
2. ``named_entities`` – comma-separated list of the entities in the sentence.
|
| 50 |
+
3. ``entity_types`` – aligned list of coarse entity classes (e.g. *City*, *Company*,
|
| 51 |
+
*Mountain*).
|
| 52 |
+
4. ``entity_languages`` – aligned list of language tags for each entity name.
|
| 53 |
+
|
| 54 |
+
• **ASR-oriented style** – Sentences are intentionally short, natural, and pronunciation-
|
| 55 |
+
friendly, making the corpus ideal for measuring how well speech or text models handle
|
| 56 |
+
Swiss proper nouns in real-world utterances.
|
| 57 |
+
|
| 58 |
+
Typical row
|
| 59 |
+
-----------
|
| 60 |
+
"Nestlé hat seinen Sitz in Vevey im Kanton Waadt.",
|
| 61 |
+
"Nestlé, Vevey, Waadt",
|
| 62 |
+
"Company, City, Canton",
|
| 63 |
+
"fr, fr, de"
|
| 64 |
+
|
| 65 |
+
Use cases
|
| 66 |
+
---------
|
| 67 |
+
* Benchmarking NER models on Swiss entities
|
| 68 |
+
* Stress-testing ASR/voice pipelines for pronunciation and transcription accuracy
|
| 69 |
+
* Data augmentation or few-shot prompts for multilingual Swiss NLP tasks
|
| 70 |
+
* Educational demos for Swiss geography, culture and corporate landscape
|
| 71 |
+
|
| 72 |
+
License
|
| 73 |
+
-------
|
| 74 |
+
CC-BY-4.0 – attribution required; no additional restrictions.
|