Datasets:
Update README.md
Browse files
README.md
CHANGED
@@ -43,3 +43,18 @@ size_categories:
|
|
43 |
|
44 |
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).
|
45 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
43 |
|
44 |
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).
|
45 |
|
46 |
+
## Data structure
|
47 |
+
|
48 |
+
Dataset includes the following columns:
|
49 |
+
|
50 |
+
- `question`: Question related to the content of the text.
|
51 |
+
- `context`: Paragraph of text.
|
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 |
+
### Ví dụ
|
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
|