Datasets:
Test
#1
by
nazimali
- opened
- README.md +27 -32
- data/{test-00000-of-00001.parquet → test-00000-of-00001-cdd117c8335dd993.parquet} +2 -2
- data/{train-00000-of-00004.parquet → train-00000-of-00001-71ba37266bea7b82.parquet} +2 -2
- data/train-00001-of-00004.parquet +0 -3
- data/train-00002-of-00004.parquet +0 -3
- data/train-00003-of-00004.parquet +0 -3
README.md
CHANGED
@@ -1,11 +1,4 @@
|
|
1 |
---
|
2 |
-
language:
|
3 |
-
- ar
|
4 |
-
- en
|
5 |
-
license: cc-by-4.0
|
6 |
-
task_categories:
|
7 |
-
- question-answering
|
8 |
-
pretty_name: Quran Question Answer with Context
|
9 |
dataset_info:
|
10 |
features:
|
11 |
- name: q_id
|
@@ -37,48 +30,45 @@ dataset_info:
|
|
37 |
- name: chapter_no
|
38 |
dtype: int64
|
39 |
- name: verse
|
|
|
|
|
40 |
dtype: string
|
41 |
- name: answer_en
|
42 |
dtype: string
|
43 |
-
- name:
|
|
|
|
|
44 |
dtype: string
|
45 |
- name: fine_class_en
|
46 |
dtype: string
|
47 |
-
- name:
|
48 |
dtype: string
|
49 |
- name: ontology_concept_en
|
50 |
dtype: string
|
51 |
-
- name: q_topic_en
|
52 |
-
dtype: string
|
53 |
-
- name: q_word_en
|
54 |
-
dtype: string
|
55 |
-
- name: question_en
|
56 |
-
dtype: string
|
57 |
- name: chapter_name_en
|
58 |
dtype: string
|
59 |
-
- name: verse_list
|
60 |
-
sequence: int64
|
61 |
- name: context
|
62 |
dtype: string
|
63 |
-
- name: context_data
|
64 |
-
dtype: string
|
65 |
-
- name: context_missing_verses
|
66 |
-
dtype: string
|
67 |
splits:
|
68 |
- name: train
|
69 |
-
num_bytes:
|
70 |
-
num_examples:
|
71 |
-
|
72 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
73 |
tags:
|
74 |
- islam
|
75 |
- quran
|
76 |
- arabic
|
77 |
-
configs:
|
78 |
-
- config_name: default
|
79 |
-
data_files:
|
80 |
-
- split: train
|
81 |
-
path: data/train-*
|
82 |
---
|
83 |
# Dataset Card for "quran-question-answer-context"
|
84 |
|
@@ -94,11 +84,16 @@ from datasets import load_dataset
|
|
94 |
dataset = load_dataset("nazimali/quran-question-answer-context")
|
95 |
```
|
96 |
|
|
|
97 |
```python
|
98 |
DatasetDict({
|
99 |
train: Dataset({
|
100 |
-
features: ['q_id', 'question', 'answer', 'q_word', 'q_topic', 'fine_class', 'class', 'ontology_concept', 'ontology_concept2', 'source', 'q_src_id', 'quetion_type', 'chapter_name', 'chapter_no', 'verse', '
|
101 |
-
num_rows:
|
|
|
|
|
|
|
|
|
102 |
})
|
103 |
})
|
104 |
```
|
|
|
1 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2 |
dataset_info:
|
3 |
features:
|
4 |
- name: q_id
|
|
|
30 |
- name: chapter_no
|
31 |
dtype: int64
|
32 |
- name: verse
|
33 |
+
sequence: string
|
34 |
+
- name: question_en
|
35 |
dtype: string
|
36 |
- name: answer_en
|
37 |
dtype: string
|
38 |
+
- name: q_word_en
|
39 |
+
dtype: string
|
40 |
+
- name: q_topic_en
|
41 |
dtype: string
|
42 |
- name: fine_class_en
|
43 |
dtype: string
|
44 |
+
- name: class_en
|
45 |
dtype: string
|
46 |
- name: ontology_concept_en
|
47 |
dtype: string
|
|
|
|
|
|
|
|
|
|
|
|
|
48 |
- name: chapter_name_en
|
49 |
dtype: string
|
|
|
|
|
50 |
- name: context
|
51 |
dtype: string
|
|
|
|
|
|
|
|
|
52 |
splits:
|
53 |
- name: train
|
54 |
+
num_bytes: 2226830.0310711367
|
55 |
+
num_examples: 978
|
56 |
+
- name: test
|
57 |
+
num_bytes: 557845.9689288634
|
58 |
+
num_examples: 245
|
59 |
+
download_size: 1515128
|
60 |
+
dataset_size: 2784676.0
|
61 |
+
license: cc-by-4.0
|
62 |
+
task_categories:
|
63 |
+
- question-answering
|
64 |
+
pretty_name: Quran Question Answer with Context
|
65 |
+
language:
|
66 |
+
- ar
|
67 |
+
- en
|
68 |
tags:
|
69 |
- islam
|
70 |
- quran
|
71 |
- arabic
|
|
|
|
|
|
|
|
|
|
|
72 |
---
|
73 |
# Dataset Card for "quran-question-answer-context"
|
74 |
|
|
|
84 |
dataset = load_dataset("nazimali/quran-question-answer-context")
|
85 |
```
|
86 |
|
87 |
+
|
88 |
```python
|
89 |
DatasetDict({
|
90 |
train: Dataset({
|
91 |
+
features: ['q_id', 'question', 'answer', 'q_word', 'q_topic', 'fine_class', 'class', 'ontology_concept', 'ontology_concept2', 'source', 'q_src_id', 'quetion_type', 'chapter_name', 'chapter_no', 'verse', 'question_en', 'answer_en', 'q_word_en', 'q_topic_en', 'fine_class_en', 'class_en', 'ontology_concept_en', 'chapter_name_en', 'context'],
|
92 |
+
num_rows: 978
|
93 |
+
})
|
94 |
+
test: Dataset({
|
95 |
+
features: ['q_id', 'question', 'answer', 'q_word', 'q_topic', 'fine_class', 'class', 'ontology_concept', 'ontology_concept2', 'source', 'q_src_id', 'quetion_type', 'chapter_name', 'chapter_no', 'verse', 'question_en', 'answer_en', 'q_word_en', 'q_topic_en', 'fine_class_en', 'class_en', 'ontology_concept_en', 'chapter_name_en', 'context'],
|
96 |
+
num_rows: 245
|
97 |
})
|
98 |
})
|
99 |
```
|
data/{test-00000-of-00001.parquet → test-00000-of-00001-cdd117c8335dd993.parquet}
RENAMED
@@ -1,3 +1,3 @@
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:
|
3 |
-
size
|
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:21a4d1a7bb05df1c31c686aadf9d7222980e26f39b2ce93374afe9a7b414e254
|
3 |
+
size 291711
|
data/{train-00000-of-00004.parquet → train-00000-of-00001-71ba37266bea7b82.parquet}
RENAMED
@@ -1,3 +1,3 @@
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:
|
3 |
-
size
|
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:194eb039568b9458b350aeaba9cfa51f5937e806c18e8f5610908e37d9961add
|
3 |
+
size 1223417
|
data/train-00001-of-00004.parquet
DELETED
@@ -1,3 +0,0 @@
|
|
1 |
-
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:5a34aa0b721645a8bb755a3e388b1910c901fb9acda9ae08c3f1e23ad35cf93a
|
3 |
-
size 411675
|
|
|
|
|
|
|
|
data/train-00002-of-00004.parquet
DELETED
@@ -1,3 +0,0 @@
|
|
1 |
-
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:145848b9bfc92c869d66b639cb86bc3567687b3a5afd4416829a65e4c2f24e2d
|
3 |
-
size 520729
|
|
|
|
|
|
|
|
data/train-00003-of-00004.parquet
DELETED
@@ -1,3 +0,0 @@
|
|
1 |
-
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:7851d56f5039d2f55f4bc0751757e13fa3a134be74a47d96a7c7fa1673f2638f
|
3 |
-
size 476573
|
|
|
|
|
|
|
|