--- language: - vi license: mit size_categories: - 10K This dataset is collected from internet sources, SQuAD dataset, wiki, etc. It has been translated into Vietnamese using "google translate" and word segmented using VnCoreNLP (https://github.com/vncorenlp/VnCoreNLP). ## Data structure Dataset includes the following columns: - `question`: Question related to the content of the text. - `context`: Paragraph of text. - `answer`: The answer to the question is based on the content of the text. - `answer_start`: The starting position of the answer in the text. ### How to use You can load this dataset using Hugging Face's `datasets` library: ```python from datasets import load_dataset dataset = load_dataset("ShynBui/Vietnamese_Reading_Comprehension_Dataset") ``` ### Split data The dataset is divided into train/test sections. ``` DatasetDict({ train: Dataset({ features: ['context', 'question', 'answer', 'answer_start'], num_rows: 48460 }) test: Dataset({ features: ['context', 'question', 'answer', 'answer_start'], num_rows: 5385 }) }) ``` ### Task categories This dataset can be used for the following main tasks - `question-answering`. - `reading-comprehension`. - `natural-language-processing`. ### Contribute We welcome all contributions to this dataset. If you discover an error or have feedback, please create an Issue or Pull Request on our Hub repository. ### License This dataset is released under the MIT License. ### Contact If you have any questions, please contact us via email: buitienphat2462002@gmail.com.