Ayomidejoe commited on
Commit
eea647e
·
verified ·
1 Parent(s): 8984a73

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +79 -40
README.md CHANGED
@@ -1,40 +1,79 @@
1
- ---
2
- license: mit
3
- configs:
4
- - config_name: default
5
- data_files:
6
- - split: train
7
- path: data/train-*
8
- dataset_info:
9
- features:
10
- - name: thread_id
11
- dtype: int64
12
- - name: category_id
13
- dtype: int64
14
- - name: category_name
15
- dtype: string
16
- - name: Question
17
- dtype: string
18
- - name: Question_token_count
19
- dtype: int64
20
- - name: Question_text_length
21
- dtype: int64
22
- - name: Question_language_probability
23
- dtype: float64
24
- - name: Answer
25
- dtype: string
26
- - name: Answer_token_count
27
- dtype: int64
28
- - name: Answer_text_length
29
- dtype: int64
30
- - name: Answer_language_probability
31
- dtype: float64
32
- - name: id
33
- dtype: int64
34
- splits:
35
- - name: train
36
- num_bytes: 1847812
37
- num_examples: 2639
38
- download_size: 901939
39
- dataset_size: 1847812
40
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ Dataset Summary
2
+ This dataset contains questions from Nigerians on a dedicated healthcare forum and responses provided exclusively by licensed and trained healthcare professionals. It reflects health concerns within the Nigerian context, incorporating English and local colloquialisms. All answers are reliable, as the platform restricted responses to verified healthcare professionals, ensuring the quality and credibility of the information. The dataset comprises a total of 336,681 GPT-2 tokens.
3
+
4
+ Data Collection
5
+ The data was curated from the activities on an online platform's open forum page that offered the Nigerian public free advice and answers. It includes:
6
+
7
+ 1,731 questions
8
+ 2,667 replies/comments
9
+ The data was extracted from a MySQL dump after the platform was closed.
10
+
11
+ Data Cleaning
12
+ The cleaning process involved:
13
+
14
+ Deduplication: Removing duplicate entries to ensure uniqueness.
15
+ Manual Review: Verifying the accuracy and relevance of the data.
16
+ Normalization: Standardizing data formats to match the quality of other relevant datasets.
17
+
18
+ ---
19
+
20
+ configs:
21
+ - config_name: default
22
+ data_files:
23
+ - split: train
24
+ path: data/train-*
25
+
26
+ Dataset Structure
27
+ Data Fields
28
+ features:
29
+ - name: thread_id
30
+ dtype: int64
31
+ - name: category_id
32
+ dtype: int64
33
+ - name: category_name
34
+ dtype: string
35
+ - name: Question
36
+ dtype: string
37
+ - name: Question_token_count
38
+ dtype: int64
39
+ - name: Question_text_length
40
+ dtype: int64
41
+ - name: Question_language_probability
42
+ dtype: float64
43
+ - name: Answer
44
+ dtype: string
45
+ - name: Answer_token_count
46
+ dtype: int64
47
+ - name: Answer_text_length
48
+ dtype: int64
49
+ - name: Answer_language_probability
50
+ dtype: float64
51
+ - name: id
52
+ dtype: int64
53
+ splits:
54
+ - name: train
55
+ num_bytes: 1847812
56
+ num_examples: 2639
57
+ download_size: 901939
58
+ dataset_size: 1847812
59
+ ---
60
+
61
+
62
+ Usage
63
+ This dataset can be valuable for:
64
+
65
+ Natural Language Processing (NLP): Training models on Nigerian English and local colloquialisms.
66
+ Healthcare Analysis: Understanding prevalent health concerns in Nigeria.
67
+ Chatbot Training: Developing AI assistants for healthcare support in Nigerian contexts.
68
+
69
+ license: mit
70
+
71
+ Citation
72
+ If you use this dataset in your research, please cite it as:
73
+
74
+ @dataset{nigerian_healthcare_forum_qa,
75
+ title={Nigerian Healthcare Forum Q\&A Dataset},
76
+ year={2023},
77
+ publisher={Your Organization},
78
+ note={Data retrieved from a closed online platform's MySQL dump}
79
+ }