File size: 2,194 Bytes
263aeb9
74f20bd
 
 
 
 
 
 
 
 
 
 
 
 
 
263aeb9
74f20bd
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1f352aa
 
 
 
 
 
 
 
 
74f20bd
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
---
language:
- fr
- gcf
license: cc-by-4.0
task_categories:
- translation
size_categories:
- 1K<n<10K
tags:
- guadeloupean-creole
- french
- low-resource-language
- caribbean
pretty_name: Guadeloupean Creole-French Translation Dataset
---

# Guadeloupean Creole-French Translation Dataset

## Dataset Description

This dataset contains 2,058 translation pairs between French and Guadeloupean Creole (Kreyòl Gwadloup) as part of the POTOMITAN project.

### Languages
- French (fr)
- Guadeloupean Creole (gcf)

### Dataset Structure

The dataset is in JSON format with the following structure:

```json
[
  {
    "id": 1,
    "fr": "French text",
    "gcf": "Creole text",
    "section": "category",
    "emergency_context": boolean
  }
]
```

### Fields
- `id`: Unique identifier
- `fr`: French text
- `gcf`: Guadeloupean Creole translation
- `section`: Category (assimil_lesson, medical_emergency, etc.)
- `emergency_context`: Boolean indicating if this is emergency-related content

### Statistics
- Total pairs: 2,058
- Emergency contexts: 9
- Categories: multiple (assimil_lesson, medical_emergency, natural_disaster, basic_needs)

### Dataset Sources
- Assimil language lessons
- Emergency phrase translations
- Common conversational expressions

### Potential Applications
- Machine translation systems
- Language learning applications
- Emergency response systems
- Cultural preservation initiatives
- Linguistic research

## Usage

```python
import json

with open('gcf_fr_translation_dataset.json', 'r', encoding='utf-8') as f:
    data = json.load(f)

for pair in data['pairs']:
    print(f"French: {pair['fr']}")
    print(f"Creole: {pair['gcf']}")
```

## Citation

If you use this dataset, please cite:

```
@dataset{potomitan_gcf_fr_2024,
  title={Guadeloupean Creole-French Translation Dataset},
  author={POTOMITAN Project},
  year={2024},
  publisher={Hugging Face}
}
```

## License

This dataset is licensed under CC BY 4.0.

## Contact

For questions or collaboration, please contact the POTOMITAN project team:
- GitHub: https://github.com/Brdcie/creoles-translation

## Acknowledgments

Special thanks to all contributors who helped collect and verify these translations.