amarsaikhan commited on
Commit
d0c7823
1 Parent(s): 13c0b5d

Create README.md

Browse files
Files changed (1) hide show
  1. README.md +41 -0
README.md ADDED
@@ -0,0 +1,41 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ language:
3
+ - en
4
+ - mn
5
+ tags:
6
+ - Mongolian
7
+ - English
8
+ - SentencePairs
9
+ - EN2MN
10
+ - MN2EN
11
+ ---
12
+ # 1 Million Mongolian to English Sentence Pairs Dataset
13
+
14
+ ## Credits
15
+
16
+ The dataset "1 Million Mongolian to English Sentence Pairs" is provided by [Sharavsambuu](https://github.com/sharavsambuu) as part of the [english-mongolian-nmt-dataset-augmentation](https://github.com/sharavsambuu/english-mongolian-nmt-dataset-augmentation) repository.
17
+
18
+ ### Contents
19
+
20
+ - **1 Million Mongolian to English Sentence Pairs (2019/10/10):**
21
+ - [Download Dataset](https://drive.google.com/file/d/14AtTVgibirSdHYTBFM9G1XPS7DvM5SdE/view?usp=sharing)
22
+
23
+ ## Dataset Details
24
+
25
+ ### Data Description
26
+
27
+ This repository contains a dataset of 1 million sentence pairs for Mongolian to English Neural Machine Translation (NMT). The dataset is intended for training and evaluating machine translation models.
28
+
29
+ ## Usage
30
+
31
+
32
+
33
+ 1. **Hugging Face Transformers**: You can utilize the dataset with the [Hugging Face Transformers](https://huggingface.co/transformers/) library for building and training NMT models. Example code snippet:
34
+
35
+ ```python
36
+ from datasets import load_dataset
37
+
38
+ # Load the dataset
39
+ dataset = load_dataset('amarsaikhan/mn_en_sentence_pairs')
40
+
41
+ # Insert your code here