CoolFace
Datasetpublic

Jyoti596/Diseases_Dataset

🩺 Diseases Dataset A consolidated medical dataset combining disease names, symptoms, and treatments collected from multiple public datasets across Hugging Face and Kaggle. This dataset can be used for building disease prediction, symptom clustering, and medical assistant models. 📦 Dataset Summary Field Type Description Disease string Name of the disease or condition Symptoms string List of symptoms or Description of symptomps Treatments string… See the full description on the dataset page: https://huggingface.co/datasets/Jyoti596/Diseases_Dataset.

sourceHugging Faceapache-2.0updated 8mo agoView on Hugging Face
0likes25downloads
Dataset Card

🩺 Diseases Dataset

A consolidated medical dataset combining disease names, symptoms, and treatments collected from multiple public datasets across Hugging Face and Kaggle. This dataset can be used for building disease prediction, symptom clustering, and medical assistant models.


📦 Dataset Summary

FieldTypeDescription
DiseasestringName of the disease or condition
SymptomsstringList of symptoms or Description of symptomps
Treatmentsstring(Optional) Treatment suggestions if present

Most splits include disease and symptoms. Treatment data is available in a few sources (like QuyenAnh), and left blank where unavailable.


📊 Dataset Statistics

Split NameSource DatasetExamplesSize
QuyenAnhQuyenAnhDE/Diseases_Symptoms400107 KB
ventisvenetis/symptom_text_to_disease_mk26,661487 KB
celikmusdux-tecblic/symptom-disease-dataset1,0581.3 MB
duxTecblicdux-tecblic/symptom-disease-dataset (mapped)5,6341.7 MB
dhivyeshrkdhivyeshrk/Disease-Symptom-Extensive-Clean246,94528.9 MB
IndianServersIndianServers/diseasessymptoms796179 KB
itachi9604Disease-Symptom-Description-Dataset (Kaggle)4,920630 KB
symptom2diseaseSymptom2Disease (Kaggle)1,200236 KB

🛠 Usage Example

python
from datasets import load_dataset

dataset = load_dataset("kamruzzaman-asif/Diseases_Dataset", split="dhivyeshrk")

print(dataset[0])
# {
#   'Disease': 'Acne',
#   'Symptoms': 'skin rash, pimples, blackheads',
#   'Treatments': ''
# }