Create README.md
Browse files
README.md
ADDED
@@ -0,0 +1,36 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
datasets:
|
3 |
+
- coptic-french-nmt-data
|
4 |
+
language:
|
5 |
+
- cop
|
6 |
+
- fr
|
7 |
+
task_categories:
|
8 |
+
- translation
|
9 |
+
pretty_name: Coptic–French NMT Dataset
|
10 |
+
---
|
11 |
+
|
12 |
+
# 📚 Coptic–French NMT Dataset
|
13 |
+
|
14 |
+
This dataset was created and used as part of the research article: TBA
|
15 |
+
|
16 |
+
## 🏗️ Data Sources
|
17 |
+
|
18 |
+
- The Coptic source text is derived from digitized editions of Biblical texts.
|
19 |
+
- The French side includes multiple translations (e.g., Louis Segond, Darby, Crampon), depending on the experiment.
|
20 |
+
- All texts have been normalized and filtered for length and content.
|
21 |
+
|
22 |
+
See the original paper for full preprocessing and data preparation details.
|
23 |
+
|
24 |
+
## 📊 Usage
|
25 |
+
|
26 |
+
To load the dataset using the 🤗 `datasets` library:
|
27 |
+
|
28 |
+
```python
|
29 |
+
from datasets import load_dataset
|
30 |
+
|
31 |
+
dataset = load_dataset("chaouin/coptic-french-nmt-data")
|
32 |
+
```
|
33 |
+
|
34 |
+
## 📊 Usage
|
35 |
+
|
36 |
+
For full details, visit the [project repository](https://github.com/chaouin/coptic-french-nmt)
|