File size: 1,681 Bytes
22e5fa0
 
 
 
 
2792f8d
 
 
22e5fa0
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
7bfdfc5
22e5fa0
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
---
language:
  - en  # English
  - fr  # French
  - es  # Spanish
  - zgh  # Tamazight
  - ber #berber
  - tzm #Tamazight
license: apache-2.0  # License
task_categories:
  - text-generation  # Text generation task
pretty_name: Tamazight Numbers Dataset  # Dataset name
tags:
  - numbers  # Numbers
  - translation  # Translation
  - multilingual  # Multilingual
---

# Tamazight Numbers Dataset

## Dataset Description

This dataset contains numbers from **1 to 1,000,000** translated into:
- **English**.
- **French**.
- **Spanish**.
- **Tamazight (Berber)**.

The dataset is designed to assist researchers and developers in building machine learning models for understanding and converting numbers into words in multiple languages.

## Dataset Structure

The dataset contains the following columns:

| Column     | Description                     | Example         |
|------------|---------------------------------|-----------------|
| Number     | The numeric representation      | 1               |
| English    | English translation of the number | one             |
| French     | French translation of the number  | un              |
| Spanish    | Spanish translation of the number | uno             |
| Tamazight  | Tamazight translation of the number | ⵢⴰⵏ             |

## How to Use the Dataset

This dataset can be used to train machine learning models for:
- Converting numbers to words.
- Translating between languages.
- Understanding linguistic structures of numbers.

### Example:

```python
import pandas as pd

# Load the dataset
df = pd.read_csv("Numbers: Multilingual -  Tamazight (1 to 1M).tsv", sep="\t")

# Display the first 5 rows
print(df.head())