prithivMLmods commited on
Commit
7fd3513
·
verified ·
1 Parent(s): c2e2c17

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +32 -23
README.md CHANGED
@@ -17,42 +17,51 @@ tags:
17
  size_categories:
18
  - 10K<n<100K
19
  ---
20
- # **Medi-Science Dataset**
21
 
22
- ## Overview
23
- This dataset, created by prithivMLmods, focuses on medical science, specifically addressing questions related to Glaucoma. It is designed for tasks such as text generation, question answering, and summarization in the medical domain.
24
 
25
- ## Dataset Details
26
 
27
- ### Tasks
28
- - Text Generation
29
- - Question Answering
30
- - Summarization
31
 
32
- ### Dataset Size
 
 
 
 
 
 
 
33
 
34
- - **Train**: 16.4k rows
35
 
36
- ### Language
37
- - English
38
 
39
- ## Dataset Content
 
 
 
 
40
 
41
- ### Example Questions and Answers
42
- - **Question**: What is Glaucoma?
43
- - **Answer**: Glaucoma is a group of diseases that can damage the eye's optic nerve and result in vision loss and...
44
 
45
- - **Question**: What causes Glaucoma?
46
- - **Answer**: Nearly 2.7 million people have glaucoma, a leading cause of blindness in the United States. Although...
 
 
 
 
47
 
48
- - **Question**: What are the symptoms of Glaucoma?
49
- - **Answer**: Symptoms of Glaucoma Glaucoma can develop in one or both eyes. The most common type of glaucoma, open-...
50
 
51
- - **Question**: What are the treatments for Glaucoma?
52
- - **Answer**: Although open-angle glaucoma cannot be cured, it can usually be controlled. While treatments may...
 
 
53
 
54
  ## Usage
55
- To use this dataset, you can load it via the Hugging Face Datasets library:
 
56
 
57
  ```python
58
  from datasets import load_dataset
 
17
  size_categories:
18
  - 10K<n<100K
19
  ---
 
20
 
21
+ # Medi-Science Dataset
 
22
 
23
+ The **Medi-Science** dataset is a comprehensive collection of medical Q&A data designed for text generation, question answering, and summarization tasks in the healthcare domain.
24
 
25
+ ## Dataset Overview
 
 
 
26
 
27
+ - **Name**: Medi-Science
28
+ - **License**: Apache-2.0
29
+ - **Languages**: English
30
+ - **Tags**: Medical, Medicine, Anomaly, Biology, Medi-Science
31
+ - **Number of Rows**: 16,412
32
+ - **Dataset Size**:
33
+ - Downloaded: 22.7 MB
34
+ - Auto-converted Parquet: 8.94 MB
35
 
36
+ ## Dataset Structure
37
 
38
+ The dataset contains the following columns:
 
39
 
40
+ | Column | Type | Description |
41
+ |--------------|--------|-----------------------------------------------------------------------------------------------|
42
+ | `problem` | String | The medical-related question or problem statement. |
43
+ | `explanation`| String | A detailed explanation or answer to the problem/question. |
44
+ | `type` | String | The category or type of medical issue (e.g., Glaucoma). |
45
 
46
+ ### Example Rows
 
 
47
 
48
+ | Problem | Explanation | Type |
49
+ |-------------------------------------|------------------------------------------------------------------------------------------------------------------------|-----------|
50
+ | What is (are) Glaucoma? | Glaucoma is a group of diseases that can damage the eye's optic nerve and result in vision loss and blindness. | Glaucoma |
51
+ | What causes Glaucoma? | Nearly 2.7 million people have glaucoma, a leading cause of blindness in the United States. | Glaucoma |
52
+ | What are the symptoms of Glaucoma? | Symptoms of glaucoma can develop in one or both eyes. The most common type of glaucoma is open-angle glaucoma. | Glaucoma |
53
+ | What are the treatments for Glaucoma?| Although open-angle glaucoma cannot be cured, it can usually be controlled. | Glaucoma |
54
 
55
+ ## Applications
 
56
 
57
+ This dataset is ideal for tasks such as:
58
+ - Training models for medical question answering.
59
+ - Developing summarization models for medical explanations.
60
+ - Building intelligent systems for healthcare support.
61
 
62
  ## Usage
63
+
64
+ To use this dataset, you can load it directly with the Hugging Face Datasets library:
65
 
66
  ```python
67
  from datasets import load_dataset