ma4389's picture
Rename covid.py to app.py
0a85975 verified
import gradio as gr
import torch
import torchvision.transforms as transforms
from PIL import Image
import torchvision.models as models
import torch.nn as nn
# ๐Ÿ”น Device setup
device = torch.device("cuda" if torch.cuda.is_available() else "cpu")
# ๐Ÿ”น Load ResNet50 and modify for 2-class output
model = models.resnet50(weights=models.ResNet50_Weights.DEFAULT)
in_features = model.fc.in_features
model.fc = nn.Sequential(
nn.Linear(in_features, 512),
nn.ReLU(),
nn.Dropout(0.4),
nn.Linear(512, 2) # 2 classes: NORMAL, PNEUMONIA
)
# ๐Ÿ”น Load the trained model
model.load_state_dict(torch.load("best_model (2).pth", map_location=device))
model.to(device)
model.eval()
# ๐Ÿ”น Preprocessing - exactly matching your val_transforms
transform = transforms.Compose([
transforms.Lambda(lambda img: img.convert("RGB")), # ๐Ÿง  Force RGB
transforms.Resize((224, 224)),
transforms.ToTensor(),
transforms.Normalize(mean=[0.5]*3, std=[0.5]*3)
])
# ๐Ÿ”น Class labels
class_names = ["NORMAL", "PNEUMONIA"]
# ๐Ÿ”น Inference function
def classify_image(img):
img = transform(img).unsqueeze(0).to(device)
with torch.no_grad():
outputs = model(img)
probs = torch.nn.functional.softmax(outputs, dim=1)
return {class_names[i]: float(probs[0][i]) for i in range(len(class_names))}
# ๐Ÿ”น Gradio Interface
interface = gr.Interface(
fn=classify_image,
inputs=gr.Image(type="pil"),
outputs=gr.Label(num_top_classes=2),
title="๐Ÿฉบ Pneumonia Classifier",
description="Upload a chest X-ray image. The model predicts whether it's NORMAL or shows signs of PNEUMONIA."
)
# ๐Ÿ”น Launch the app
interface.launch()