File size: 3,799 Bytes
edb6b00 d2a6bcc cb032ad ea24b94 eea647e d2a6bcc cb032ad 2ea3d93 ea24b94 eea647e 34f1a87 d2a6bcc cb032ad eea647e 1de1c30 eea647e 6053ec0 d2a6bcc cb032ad 6053ec0 24c4759 eea647e ea24b94 edb6b00 ea24b94 eea647e d2a6bcc cb032ad eea647e d2a6bcc eea647e d2a6bcc eea647e d2a6bcc cb032ad eea647e de9eb76 a836882 de9eb76 a836882 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 |
---
license: mit
task_categories:
- text-classification
- feature-extraction
- question-answering
language:
- en
tags:
- medical
size_categories:
- 100K<n<1M
---
# Nigerian Healthcare Forum Q&A Datase
## Dataset Summary
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**.
## Data Collection
The data was curated from the activities on an online platform's open forum page that offered the Nigerian public free advice and answers between 2018 and 2022. It includes:
- 1,731 questions
- 2,639 replies/comments
The data was extracted from a MySQL dump after the platform was closed.
## Data Cleaning
The cleaning process involved:
- Deduplication: Removing duplicate entries to ensure uniqueness.
- Manual Review: Verifying the accuracy and relevance of the data.
- Normalization: Standardizing data formats to match the quality of other relevant datasets.
## Dataset Structure
| Field | Type | Description |
|-----------------------------|---------|------------------------------------------------------------|
| `thread_id` | string | The ID of the original thread |
| `category_id` | string | The ID of the category |
| `category_name` | string | The corresponding name of the category |
| `Question` | string | The text of the question asked |
| `Question_token_count` | integer | The number of GPT-2 tokens in the question text |
| `Question_text_length` | integer | The length of the question text (in characters) |
| `Question_language_probability` | float | The confidence score of the language detection algorithm |
| `Answer` | string | The text of the answer given |
| `Answer_token_count` | integer | The number of GPT-2 tokens in the answer text |
| `Answer_text_length` | integer | The length of the answer text (in characters) |
| `Answer_language_probability` | float | The confidence score of the language detection algorithm |
NB: The rows are questions alongside their answers/responses/comments (multiple rows with the same thread ID). So, a single question could have more than one answers/response/comment.
## How to Load the Dataset
Here's how you can load and explore the dataset using the 🤗 Datasets library:
```python
import datasets
dataset = datasets.load_dataset('Ayomidejoe/NaijaMed_QA_Dataset')
# Display the first example
print(dataset['train'][0])
```
## Usage
This dataset can be valuable for:
- Natural Language Processing (NLP): Training models on Nigerian English and local colloquialisms.
- Healthcare Analysis: Understanding prevalent health concerns in Nigeria.
- Chatbot Training: Developing AI assistants for healthcare support in Nigerian contexts.
## License
MIT
## Citation
If you use this dataset in your research, please cite it as:
```@dataset {NaijaMed_QA_Dataset},
title = {Nigerian Healthcare Forum Q\&A Dataset},
author = {Ayomide Owoyemi}
year = {2024},
publisher = {Hugging Face Datasets},
version = {1.0.0},
url = {https://huggingface.co/datasets/Ayomidejoe/NaijaMed_QA_Dataset},
} |