ShynBui commited on
Commit
fd4c3f4
·
verified ·
1 Parent(s): cd3c2f4

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +7 -7
README.md CHANGED
@@ -52,12 +52,12 @@ Dataset includes the following columns:
52
  - `answer`: The answer to the question is based on the content of the text.
53
  - `answer_start`: The starting position of the answer in the text.
54
 
55
- ### Example
 
 
 
56
 
57
- ```csv
58
- question,context,answer,answer_start
59
- "Lý do gì mà bạn yêu lập trình?","Tôi yêu lập trình vì nó giúp tôi sáng tạo và giải quyết vấn đề.","vì nó giúp tôi sáng tạo và giải quyết vấn đề.",21
60
- "Thời tiết hôm nay như thế nào?","Hôm nay trời đẹp và mát mẻ.","Hôm nay trời đẹp",0
61
- '''
62
 
63
- ### How to use
 
52
  - `answer`: The answer to the question is based on the content of the text.
53
  - `answer_start`: The starting position of the answer in the text.
54
 
55
+ ### How to use
56
+ You can load this dataset using Hugging Face's `datasets` library:
57
+ ```python
58
+ from datasets import load_dataset
59
 
60
+ dataset = load_dataset("ShynBui/Vietnamese_Reading_Comprehension_Dataset")
61
+ ```
 
 
 
62
 
63
+ ###