Chest X-Ray Classifier (Keras)
This repository hosts a Keras model file (best_mod.keras) used by the corresponding Hugging Face Space demo.
- Predictions:
Atelectasis,Effusion,Infiltration - Input: RGB image resized to 224x224 and normalized
- Preprocessing: CLAHE enhancement applied to the L channel in LAB color space
Usage (Python)
import tensorflow as tf
from huggingface_hub import hf_hub_download
model_path = hf_hub_download(repo_id="<your-username>/<your-model-repo>", filename="best_mod.keras")
model = tf.keras.models.load_model(model_path)
- Downloads last month
- -