Update README.md
Browse files
README.md
CHANGED
@@ -19,6 +19,9 @@ size_categories:
|
|
19 |
|
20 |
This dataset was created by scraping over 14,000 Tunisian YouTube videos, providing a rich repository of Tunisian language data. It covers a wide range of topics and text types, including politics, news, football, and more. The dataset is particularly valuable for training and fine-tuning natural language processing models specific to Tunisian Arabic and other local dialects.
|
21 |
|
|
|
|
|
|
|
22 |
## Dataset Structure
|
23 |
|
24 |
The dataset is structured in the following way:
|
@@ -35,6 +38,18 @@ from datasets import load_dataset
|
|
35 |
dataset = load_dataset('Nehdi/TuniziBigBench')
|
36 |
|
37 |
# Example: Print the first 5 entries from the dataset
|
38 |
-
for entry in dataset['
|
39 |
-
print(entry)
|
40 |
```
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
19 |
|
20 |
This dataset was created by scraping over 14,000 Tunisian YouTube videos, providing a rich repository of Tunisian language data. It covers a wide range of topics and text types, including politics, news, football, and more. The dataset is particularly valuable for training and fine-tuning natural language processing models specific to Tunisian Arabic and other local dialects.
|
21 |
|
22 |
+
- **Curated by:** Nehdi Taha Mustapha & Oussama Sassi.
|
23 |
+
- **Contact:** https://www.linkedin.com/in/taha-mustapha-nehdi-240585203/
|
24 |
+
|
25 |
## Dataset Structure
|
26 |
|
27 |
The dataset is structured in the following way:
|
|
|
38 |
dataset = load_dataset('Nehdi/TuniziBigBench')
|
39 |
|
40 |
# Example: Print the first 5 entries from the dataset
|
41 |
+
for entry in dataset['train'][:5]:
|
42 |
+
print(entry['text'])
|
43 |
```
|
44 |
+
|
45 |
+
|
46 |
+
### Citation
|
47 |
+
If you use this dataset in your research, please cite it as follows:
|
48 |
+
```
|
49 |
+
@dataset{TuniziBigBench,
|
50 |
+
author = {Nehdi Taha Mustapha},
|
51 |
+
title = {Tunizi Tunisian Dialectic Derja Dataset},
|
52 |
+
year = {2025},
|
53 |
+
url = {https://huggingface.co/datasets/Nehdi/TuniziBigBench}
|
54 |
+
}
|
55 |
+
```
|