Spaces:
Runtime error
Runtime error
File size: 1,293 Bytes
383044e 418cd72 132292b 418cd72 132292b 418cd72 132292b 418cd72 132292b |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 |
from huggingface_hub import hf_hub_download
import tensorflow as tf
import gradio as gr
import numpy as np
from PIL import Image
import os
# Disable GPU usage
os.environ["CUDA_VISIBLE_DEVICES"] = "-1"
# Download and load model
model_path = hf_hub_download(repo_id="Owos/tb-classifier", filename="tb_model.h5")
model = tf.keras.models.load_model(model_path)
# Inference function
def predict_tb(img: Image.Image):
try:
image = img.convert("RGB").resize((224, 224))
image_array = np.array(image) / 255.0
image_array = image_array[np.newaxis, ...]
prediction = model.predict(image_array)[0][0]
label = "π¦ Tuberculosis Detected" if prediction > 0.5 else "π« Normal"
confidence = prediction if prediction > 0.5 else 1 - prediction
return f"{label} (Confidence: {confidence:.2%})"
except Exception as e:
return f"β Error during prediction: {str(e)}"
# Gradio UI
iface = gr.Interface(
fn=predict_tb,
inputs=gr.Image(type="pil", label="Upload Chest X-ray Image"),
outputs="text",
title="π©» Tuberculosis Detection from Chest X-ray",
description="Upload a chest X-ray to detect signs of Tuberculosis using an AI model (ResNet50). For educational & demo use only."
)
# Launch the app
iface.launch()
|