Datasets:
Tasks:
Token Classification
Modalities:
Text
Formats:
parquet
Languages:
Arabic
Size:
< 1K
Tags:
segmentation
License:
Update README.md
Browse files
README.md
CHANGED
|
@@ -36,3 +36,65 @@ configs:
|
|
| 36 |
- split: train
|
| 37 |
path: data/train-*
|
| 38 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 36 |
- split: train
|
| 37 |
path: data/train-*
|
| 38 |
---
|
| 39 |
+
|
| 40 |
+
# Arabic Sentence Segmentation Shared Task 2026
|
| 41 |
+
For details about the shared task, evaluation scripts, leaderboard, and submission guidelines, visit:
|
| 42 |
+
https://www.araseg.aramlab.ai/
|
| 43 |
+
|
| 44 |
+
|
| 45 |
+
## Dataset Summary
|
| 46 |
+
|
| 47 |
+
AraSeg is the first comprehensive benchmark for Arabic sentence segmentation.
|
| 48 |
+
The corpus is designed to support research on sentence segmentation in Modern Standard Arabic (MSA), particularly in settings where punctuation is inconsistent, missing, or noisy.
|
| 49 |
+
AraSeg contains manually annotated documents collected from diverse sources and genres, enabling robust evaluation across different writing styles and domains.
|
| 50 |
+
The benchmark contains manually annotated documents collected from diverse sources and genres, enabling robust evaluation across different writing styles and domains.
|
| 51 |
+
|
| 52 |
+
---
|
| 53 |
+
## Dataset Structure
|
| 54 |
+
|
| 55 |
+
### Data Instances
|
| 56 |
+
```
|
| 57 |
+
{'doc_id': 'doc_00b450a96684',
|
| 58 |
+
'text': ['الفصل','الأول','حين','ركبت','السيارة','لم','أكن','أتصور','أنني','أبدأ', ...],
|
| 59 |
+
'labels': [0, 1, 0, 0, 0, 0, 0, 0, 0, 0, ...]}
|
| 60 |
+
```
|
| 61 |
+
|
| 62 |
+
### Data Fields
|
| 63 |
+
- **doc_id**: Unique document identifier.
|
| 64 |
+
- **text**: White-space-tokenized document represented as a list of tokens.
|
| 65 |
+
- **labels**: Token-level sentence boundary labels. `1` indicates that a sentence boundary follows the current token, while `0` indicates no boundary.
|
| 66 |
+
|
| 67 |
+
### Data Splits
|
| 68 |
+
- **train**: 174 documents (10,657 sentences and 128K words).
|
| 69 |
+
- **dev**: 222 documents (12,985 sentences and 164K words).
|
| 70 |
+
- **test**: 262 documents (12,509 sentences and 159K words).
|
| 71 |
+
---
|
| 72 |
+
## Task Definition
|
| 73 |
+
Sentence segmentation is formulated as a binary token classification task.
|
| 74 |
+
|
| 75 |
+
Given a sequence of tokens: ```[token_1, token_2, ..., token_n]```, the model predicts for each token whether a sentence boundary follows it.
|
| 76 |
+
For example:
|
| 77 |
+
|
| 78 |
+
| Token | Label |
|
| 79 |
+
|---|---|
|
| 80 |
+
| ذهب | 0 |
|
| 81 |
+
| الطالب | 0 |
|
| 82 |
+
| إلى | 0 |
|
| 83 |
+
| المدرسة | 1 |
|
| 84 |
+
|
| 85 |
+
The label `1` indicates that the sentence ends after the token.
|
| 86 |
+
|
| 87 |
+
---
|
| 88 |
+
|
| 89 |
+
## Evaluation
|
| 90 |
+
We evaluate systems using boundary-level metrics:
|
| 91 |
+
|
| 92 |
+
- **Boundary Precision (P):** Percentage of predicted sentence boundaries that are correct.
|
| 93 |
+
- **Boundary Recall (R):** Percentage of gold sentence boundaries correctly identified.
|
| 94 |
+
- **Boundary F1 (F1):** Harmonic mean of precision and recall.
|
| 95 |
+
|
| 96 |
+
Metrics are computed at the document level and averaged across the corpus.
|
| 97 |
+
|
| 98 |
+
---
|
| 99 |
+
|
| 100 |
+
|