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.
🩺 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
Most splits include disease and symptoms. Treatment data is available in a few sources (like QuyenAnh), and left blank where unavailable.
📊 Dataset Statistics
🛠 Usage Example
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': ''
# }
