File size: 14,297 Bytes
a4da623 | 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 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 | import os
import sys
from concurrent.futures import ThreadPoolExecutor, as_completed
from typing import Tuple, Dict
from PIL import Image
import random
import gradio as gr
import torch
from datasets import load_dataset
# Import model handlers
from model_handlers.basic_cnn_handler import BasicCNNModel
from model_handlers.hugging_face_handler import HuggingFaceModel
from model_handlers.xception_handler import XceptionModel
# Global Configuration
BASE_DIR = os.path.dirname(os.path.abspath(__file__))
MODELS_DIR = os.path.join(BASE_DIR, "models")
MODEL_1_DIR = os.path.join(MODELS_DIR, "basic_cnn")
MODEL_2_DIR = os.path.join(MODELS_DIR, "hugging_face")
MODEL_3_DIR = os.path.join(MODELS_DIR, "xception")
# Model instances (loaded at startup)
basic_cnn_model = None
hugging_face_model = None
xception_model = None
# Dataset for random image selection
dataset = None
DATASET_NAME = "AIOmarRehan/Vehicles"
MODELS_INFO = {
"Model 1: Basic CNN": {
"description": "Custom CNN architecture with 4 Conv blocks and BatchNorm",
"path": MODEL_1_DIR,
"handler_class": BasicCNNModel
},
"Model 2: Hugging Face Transformers (DeiT-Tiny | Meta)": {
"description": "Pre-trained transformer-based model from Hugging Face (DeiT-Tiny | Meta)",
"path": MODEL_2_DIR,
"handler_class": HuggingFaceModel
},
"Model 3: Xception CNN": {
"description": "Fine-tuned Xception architecture using timm library",
"path": MODEL_3_DIR,
"handler_class": XceptionModel
}
}
# Model Loading
def load_models():
"""Load all three models at startup"""
global basic_cnn_model, hugging_face_model, xception_model
print("\n" + "="*60)
print("Loading Models...")
print("="*60)
try:
print("\n[1/3] Loading Basic CNN Model...")
basic_cnn_model = BasicCNNModel(MODEL_1_DIR)
print("Basic CNN Model loaded successfully")
except Exception as e:
print(f"Failed to load Basic CNN Model: {e}")
basic_cnn_model = None
try:
print("\n[2/3] Loading Hugging Face (DeiT-Tiny | Meta) Model...")
hugging_face_model = HuggingFaceModel(MODEL_2_DIR)
print("Hugging Face Model loaded successfully")
except Exception as e:
print(f"Failed to load Hugging Face Model: {e}")
hugging_face_model = None
try:
print("\n[3/3] Loading Xception Model...")
xception_model = XceptionModel(MODEL_3_DIR)
print("Xception Model loaded successfully")
except Exception as e:
print(f"Failed to load Xception Model: {e}")
xception_model = None
print("\n" + "="*60)
print("Model Loading Complete!")
print("="*60 + "\n")
def load_dataset_split():
"""Load the dataset for random image selection"""
global dataset
try:
print("\nLoading dataset from Hugging Face...")
# Load the test split of the dataset
dataset = load_dataset(DATASET_NAME, split="train", trust_remote_code=True)
print(f"Dataset loaded successfully: {len(dataset)} images available")
except Exception as e:
print(f"Failed to load dataset: {e}")
print("Random image feature will be disabled")
dataset = None
def get_random_image():
"""Get a random image from the dataset"""
if dataset is None:
print("Dataset not loaded, attempting to load...")
load_dataset_split()
if dataset is None:
return None
try:
# Select a random index
random_idx = random.randint(0, len(dataset) - 1)
sample = dataset[random_idx]
# Get the image (usually stored as 'image' or 'img' key)
if 'image' in sample:
img = sample['image']
elif 'img' in sample:
img = sample['img']
else:
# Try to find the first PIL Image in the sample
for value in sample.values():
if isinstance(value, Image.Image):
img = value
break
else:
print(f"Could not find image in sample keys: {sample.keys()}")
return None
print(f"Loaded random image from index {random_idx}")
return img
except Exception as e:
print(f"Error loading random image: {e}")
return None
# Prediction Functions
def predict_with_model_1(image: Image.Image) -> Tuple[str, float, Dict]:
"""Predict with Basic CNN Model"""
if basic_cnn_model is None:
return "Model 1: Error", 0.0, {}
try:
label, confidence, prob_dict = basic_cnn_model.predict(image)
return label, confidence, prob_dict
except Exception as e:
print(f"Error in Model 1 prediction: {e}")
return "Error", 0.0, {}
def predict_with_model_2(image: Image.Image) -> Tuple[str, float, Dict]:
"""Predict with Hugging Face (DeiT-Tiny | Meta) Model"""
if hugging_face_model is None:
return "Model 2: Error", 0.0, {}
try:
label, confidence, prob_dict = hugging_face_model.predict(image)
return label, confidence, prob_dict
except Exception as e:
print(f"Error in Model 2 prediction: {e}")
return "Error", 0.0, {}
def predict_with_model_3(image: Image.Image) -> Tuple[str, float, Dict]:
"""Predict with Xception Model"""
if xception_model is None:
return "Model 3: Error", 0.0, {}
try:
label, confidence, prob_dict = xception_model.predict(image)
return label, confidence, prob_dict
except Exception as e:
print(f"Error in Model 3 prediction: {e}")
return "Error", 0.0, {}
def predict_all_models(image: Image.Image):
if image is None:
empty_result = {"Model": "N/A", "Prediction": "No image", "Confidence": 0.0}
empty_probs = {}
empty_consensus = "<p>Please upload an image to see results</p>"
return empty_result, empty_result, empty_result, "Please upload an image", empty_probs, empty_probs, empty_probs, empty_consensus
print("\n" + "="*60)
print("Running Predictions with All Models...")
print("="*60)
# Run predictions in parallel
with ThreadPoolExecutor(max_workers=3) as executor:
future_1 = executor.submit(predict_with_model_1, image)
future_2 = executor.submit(predict_with_model_2, image)
future_3 = executor.submit(predict_with_model_3, image)
# Wait for all predictions to complete
result_1_label, result_1_conf, result_1_probs = future_1.result()
result_2_label, result_2_conf, result_2_probs = future_2.result()
result_3_label, result_3_conf, result_3_probs = future_3.result()
# Format results for display
result_1 = {
"Model": "Basic CNN",
"Prediction": result_1_label,
"Confidence": f"{result_1_conf * 100:.2f}%"
}
result_2 = {
"Model": "Hugging Face (DeiT-Tiny | Meta)",
"Prediction": result_2_label,
"Confidence": f"{result_2_conf * 100:.2f}%"
}
result_3 = {
"Model": "Xception",
"Prediction": result_3_label,
"Confidence": f"{result_3_conf * 100:.2f}%"
}
# Check if all models agree
all_agree = result_1_label == result_2_label == result_3_label
# Create comparison text with HTML styling
if all_agree:
consensus_html = f"""
<div style="background-color: #d4edda; border: 2px solid #28a745; border-radius: 8px; padding: 20px; text-align: center;">
<h3 style="color: #155724; margin: 0; font-size: 24px;">All Models Agree!</h3>
<p style="color: #155724; margin: 10px 0 0 0; font-size: 18px; font-weight: bold;">{result_1_label}</p>
</div>
"""
else:
consensus_html = f"""
<div style="background-color: #f8d7da; border: 2px solid #dc3545; border-radius: 8px; padding: 20px; text-align: center;">
<h3 style="color: #721c24; margin: 0; font-size: 24px;">Models Disagree</h3>
<p style="color: #721c24; margin: 10px 0 0 0; font-size: 16px;">Check predictions below for details</p>
</div>
"""
comparison_text = f"""
## Comparison Results
**Model 1 (Basic CNN):** {result_1_label} ({result_1_conf * 100:.2f}%)
**Model 2 (Hugging Face (DeiT-Tiny | Meta)):** {result_2_label} ({result_2_conf * 100:.2f}%)
**Model 3 (Xception):** {result_3_label} ({result_3_conf * 100:.2f}%)
"""
print(f"Prediction 1: {result_1_label} ({result_1_conf * 100:.2f}%)")
print(f"Prediction 2: {result_2_label} ({result_2_conf * 100:.2f}%)")
print(f"Prediction 3: {result_3_label} ({result_3_conf * 100:.2f}%)")
print(f"Consensus: {'All agree!' if all_agree else 'Disagreement detected'}")
print("="*60 + "\n")
return result_1, result_2, result_3, comparison_text, result_1_probs, result_2_probs, result_3_probs, consensus_html
# Gradio Interface
def build_interface() -> gr.Blocks:
with gr.Blocks(
title="PyTorch Unified Model Comparison",
theme=gr.themes.Soft()
) as demo:
# Header
gr.Markdown("""
# PyTorch Unified Model Comparison
Upload an image and compare predictions from three different PyTorch models **simultaneously**.
This tool helps you understand how different architectures (Basic CNN, Transformers, Xception)
classify the same image and identify where they agree or disagree.
""")
# Model Information
with gr.Accordion("Model Information", open=False):
gr.Markdown(f"""
### Model 1: Basic CNN
- **Description:** {MODELS_INFO['Model 1: Basic CNN']['description']}
- **Architecture:** 4 Conv blocks + BatchNorm + Global Avg Pooling
- **Input Size:** 224×224
### Model 2: Hugging Face Transformers (DeiT-Tiny | Meta)
- **Description:** {MODELS_INFO['Model 2: Hugging Face Transformers (DeiT-Tiny | Meta)']['description']}
- **Framework:** transformers library
### Model 3: Xception CNN
- **Description:** {MODELS_INFO['Model 3: Xception CNN']['description']}
- **Architecture:** Fine-tuned Xception with timm
""")
# Input Section
with gr.Row():
with gr.Column():
image_input = gr.Image(
type="pil",
label="Upload Image",
sources=["upload", "webcam"]
)
predict_btn = gr.Button("Predict with All Models", variant="primary", size="lg")
random_img_btn = gr.Button("Load Random Image from Dataset", variant="secondary", size="lg")
# Output Section
gr.Markdown("## Results")
with gr.Row():
with gr.Column():
result_1_box = gr.JSON(label="Model 1: Basic CNN")
with gr.Column():
result_2_box = gr.JSON(label="Model 2: Hugging Face (DeiT-Tiny)")
with gr.Column():
result_3_box = gr.JSON(label="Model 3: Xception")
# Comparison Section
comparison_output = gr.Markdown(label="Comparison Summary")
# Consensus Indicator (HTML for colored styling)
consensus_output = gr.HTML(value="<p></p>")
# Class Probabilities Section
gr.Markdown("## Class Probabilities")
with gr.Row():
with gr.Column():
probs_1 = gr.Label(label="Model 1: Basic CNN | Probabilities")
with gr.Column():
probs_2 = gr.Label(label="Model 2: DeiT-Tiny | Meta | Probabilities")
with gr.Column():
probs_3 = gr.Label(label="Model 3: Xception | Probabilities")
# Connect button click
predict_btn.click(
fn=predict_all_models,
inputs=image_input,
outputs=[result_1_box, result_2_box, result_3_box, comparison_output, probs_1, probs_2, probs_3, consensus_output]
)
# Also trigger on image upload
image_input.change(
fn=predict_all_models,
inputs=image_input,
outputs=[result_1_box, result_2_box, result_3_box, comparison_output, probs_1, probs_2, probs_3, consensus_output]
)
# Connect random image button
random_img_btn.click(
fn=get_random_image,
inputs=None,
outputs=image_input
)
# Footer
gr.Markdown("""
---
**Available Classes:** Auto Rickshaws | Bikes | Cars | Motorcycles | Planes | Ships | Trains
**Dataset:** Random images are loaded from [AIOmarRehan/Vehicles](https://huggingface.co/datasets/AIOmarRehan/Vehicles) on Hugging Face
This unified application allows real-time comparison of three different deep learning models
to understand their individual strengths and weaknesses.
""")
return demo
# Main Entry Point
if __name__ == "__main__":
# Load all models at startup
load_models()
# Load dataset for random image selection
load_dataset_split()
# Build and launch Gradio interface
demo = build_interface()
server_name = os.getenv("GRADIO_SERVER_NAME", "0.0.0.0")
server_port = int(os.getenv("GRADIO_SERVER_PORT", "7860"))
print(f"\nLaunching Gradio Interface on {server_name}:{server_port}")
print("Open your browser and navigate to http://localhost:7860\n")
demo.launch(
server_name=server_name,
server_port=server_port,
share=False,
show_error=True
) |