Disease Classifier (XGBoost)

A multi-class disease classification model built with XGBoost that predicts diseases based on patient symptoms, age, and gender.

Model Overview

Property Value
Algorithm XGBoost Classifier
Objective multi:softprob
Task Multi-class Classification
Input Age, Gender, Symptom indicators
Output Disease probabilities

πŸš€ Quick Start

Installation

pip install huggingface_hub joblib pandas numpy xgboost scikit-learn

Load and Use the Model

import joblib
import pandas as pd
import numpy as np
from huggingface_hub import hf_hub_download

# Download model from Hugging Face
REPO_ID = "ARUNAGIRINATHAN/disease-classifier"
model = joblib.load(hf_hub_download(REPO_ID, "xgboost_model.joblib"))
label_encoder = joblib.load(hf_hub_download(REPO_ID, "label_encoder.joblib"))
feature_columns = joblib.load(hf_hub_download(REPO_ID, "feature_columns.joblib"))

Made with ❀️ for healthcare AI research

Downloads last month

-

Downloads are not tracked for this model. How to track
Inference Providers NEW
This model isn't deployed by any Inference Provider. πŸ™‹ Ask for provider support