Arseniy-Sandalov commited on
Commit
6397a3b
Β·
verified Β·
1 Parent(s): f0495e8

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +59 -3
README.md CHANGED
@@ -1,3 +1,59 @@
1
- ---
2
- license: mit
3
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: cc-by-sa-4.0
3
+ task_categories:
4
+ - translation
5
+ language:
6
+ - en
7
+ - ka
8
+ pretty_name: English-Georgian Parallel Dataset
9
+ size_categories:
10
+ - 1K<n<10M
11
+ ---
12
+
13
+ # English-Georgian Parallel Dataset πŸ‡¬πŸ‡§πŸ‡¬πŸ‡ͺ
14
+
15
+ ## πŸ“„ Dataset Overview
16
+ The **English-Georgian Parallel Dataset** is sourced from **OPUS**, a widely used open collection of parallel corpora. This dataset contains aligned sentence pairs in **English and Georgian**, extracted from Wikipedia translations.
17
+
18
+ - **Corpus Name**: Wikimedia
19
+ - **Package**: wikimedia.en-ka (Moses format)
20
+ - **Publisher**: OPUS (Open Parallel Corpus)
21
+ - **Release**: v20230407
22
+ - **Release Date**: April 13, 2023
23
+ - **License**: [CC–BY-SA 4.0](https://creativecommons.org/licenses/by-sa/4.0/)
24
+
25
+ ## πŸ”— Dataset Link
26
+ You can access the dataset here:
27
+ [![Dataset Link](https://img.shields.io/badge/Dataset-Link-blue)](http://opus.nlpl.eu/wikimedia-v20230407.php)
28
+
29
+ ## πŸ“Š Dataset Description
30
+ This dataset consists of **English-Georgian** parallel sentences extracted from Wikipedia translations. It is useful for various **natural language processing (NLP)** tasks, such as:
31
+ βœ… Machine translation
32
+ βœ… Bilingual lexicon extraction
33
+ βœ… Cross-lingual NLP applications
34
+ βœ… Multilingual sentence alignment
35
+
36
+ The dataset is formatted in Moses format, making it easy to integrate with NLP toolkits like OpenNMT, Fairseq, and MarianMT.
37
+
38
+ ## πŸš€ Usage Example
39
+ To use this dataset in Python, you can load it with `datasets` from Hugging Face:
40
+
41
+ ```python
42
+ from datasets import load_dataset
43
+
44
+ dataset = load_dataset("Arseniy-Sandalov/Georgian-Parallel-Corpora")
45
+ print(dataset)
46
+ ```
47
+
48
+ ##πŸ“œ Citation
49
+ If you use this dataset in your research or project, please cite the following work:
50
+ ```
51
+ @inproceedings {Tiedemann2012OPUS,
52
+ author = {Tiedemann, J.},
53
+ title = {Parallel Data, Tools and Interfaces in OPUS},
54
+ booktitle = {Proceedings of the 8th International Conference on Language Resources and Evaluation (LREC 2012)},
55
+ year = {2012},
56
+ url = {http://www.lrec-conf.org/proceedings/lrec2012/pdf/463_Paper.pdf},
57
+ note = {OPUS parallel corpus}
58
+ }
59
+ ```