--- language: - en - mn tags: - Mongolian - English - SentencePairs - EN2MN - MN2EN --- # 1 Million Mongolian to English Sentence Pairs Dataset ## Credits 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. ### Contents - **1 Million Mongolian to English Sentence Pairs (2019/10/10):** - [Download Dataset](https://drive.google.com/file/d/14AtTVgibirSdHYTBFM9G1XPS7DvM5SdE/view?usp=sharing) ## Dataset Details ### Data Description 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. ## Usage 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: ```python from datasets import load_dataset # Load the dataset dataset = load_dataset('amarsaikhan/mn_en_sentence_pairs') # Insert your code here