Datasets:

Modalities:
Text
Formats:
parquet
ArXiv:
14kwonss commited on
Commit
76da679
·
verified ·
1 Parent(s): 77a7471

Create README.md

Browse files
Files changed (1) hide show
  1. README.md +38 -0
README.md ADDED
@@ -0,0 +1,38 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Afroscope-Data
2
+
3
+ This dataset is derived from the **Afroscope** project and is designed for **language identification**.
4
+
5
+ It contains text data covering **713 African languages**, making it one of the most comprehensive resources for African language modeling and evaluation.
6
+
7
+ ## Dataset Features
8
+
9
+ - **prompt** *(string)*: Description here.
10
+ - **text** *(string)*: Description here.
11
+ - **token_length** *(int64)*: Description here.
12
+ - **audience** *(string)*: Description here.
13
+ - **format** *(string)*: Description here.
14
+ - **seed_data** *(string)*: Description here.
15
+
16
+ ## Loading the dataset
17
+
18
+ ```python
19
+ from datasets import load_dataset
20
+
21
+ ds = load_dataset(
22
+ "14kwonss/afroscope-dataset",
23
+ split="train"
24
+ )
25
+
26
+ print(ds[0])
27
+ ```
28
+
29
+ ## Citation
30
+
31
+ ```bibtex
32
+ @article{kwon2026afroscope,
33
+ title={AfroScope: A Framework for Studying the Linguistic Landscape of Africa},
34
+ author={Kwon, Sang Yun and Elmadany, AbdelRahim and Abdul-Mageed, Muhammad},
35
+ journal={arXiv preprint arXiv:2601.13346},
36
+ year={2026}
37
+ }
38
+ ```