Spaces:
Sleeping
Sleeping
File size: 10,234 Bytes
e328177 feac374 e328177 feac374 a2a9230 feac374 a2a9230 feac374 a2a9230 8fbace9 a2a9230 8fbace9 a2a9230 feac374 e237a15 |
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 |
import gradio as gr
from fastai.vision.all import *
from pathlib import Path
import numpy as np
def load_model():
"""Load the exported FastAI model"""
try:
model_path = Path('bears_model_clean.pkl')
learn = load_learner(model_path)
return learn
except Exception as e:
print(f"Error loading model: {e}")
return None
learn = load_model()
def classify_bear(image):
"""
Detect bear species from uploaded image
Args:
image: PIL Image or numpy array
Returns:
dict: Prediction probabilities for each bear type
"""
if learn is None:
return {"Error": "Model not loaded properly"}
if image is None:
return {"No Image": "Please upload an image"}
try:
# Make prediction
pred, pred_idx, probs = learn.predict(image)
# Get class names
class_names = learn.dls.vocab
# Create confidence dictionary
confidences = {}
for i, class_name in enumerate(class_names):
confidences[class_name] = float(probs[i])
return confidences
except Exception as e:
return {"Error": f"Prediction failed: {str(e)}"}
def get_bear_info(prediction_dict):
"""
Get information about the predicted bear type
Args:
prediction_dict: Dictionary with prediction confidences
Returns:
str: Information about the most likely bear type
"""
if "Error" in prediction_dict:
return prediction_dict["Error"]
if "No Image" in prediction_dict:
return "Upload an image to learn about the bear species!"
# Get the bear type with highest confidence
top_prediction = max(prediction_dict.items(), key=lambda x: x[1])
bear_type = top_prediction[0]
confidence = top_prediction[1]
# Bear information dictionary
bear_info = {
"black": "π» **Black Bear**: The most common bear in North America. They're excellent climbers and swimmers, with a varied omnivorous diet.",
"grizzly": "π» **Grizzly Bear**: A powerful subspecies of brown bear found in North America. Known for their distinctive shoulder hump and long claws.",
"polar": "π»ββοΈ **Polar Bear**: The largest bear species, perfectly adapted to Arctic life. They're excellent swimmers and primarily hunt seals.",
"panda": "πΌ **Giant Panda**: A beloved bear species native to China, famous for their black and white coloring and bamboo diet.",
"teddy": "π§Έ **Teddy Bear**: A stuffed toy bear! Named after President Theodore Roosevelt, these cuddly companions have been beloved by children for over a century."
}
# Find matching bear info (case insensitive)
info = ""
for key, value in bear_info.items():
if key.lower() in bear_type.lower():
info = value
break
if not info:
info = f"π» **{bear_type}**: A type of bear!"
return f"{info}\n\n**Confidence**: {confidence:.1%}"
def predict_and_explain(image):
"""
Main function that combines prediction and explanation
Args:
image: Input image
Returns:
tuple: (prediction_dict, explanation_text)
"""
predictions = classify_bear(image)
explanation = get_bear_info(predictions)
return predictions, explanation
def handle_image_change(image):
"""
Handle image change events with proper None checking
Args:
image: Input image (can be None when cleared)
Returns:
tuple: (prediction_dict, explanation_text)
"""
if image is None:
return {}, "Upload an image to learn about the bear species!"
return predict_and_explain(image)
def get_sample_images():
"""
Get list of sample images if they exist
Returns:
list: List of image paths for examples
"""
sample_paths = [
"samples/black.jpg",
"samples/grizzly.jpg",
"samples/polar.jpg",
"samples/panda.jpg",
"samples/teddy.jpg"
]
existing_samples = []
for path in sample_paths:
if Path(path).exists():
existing_samples.append([path])
print(f"β
Found sample image: {path}")
else:
print(f"β οΈ Sample image not found: {path}")
return existing_samples
def create_interface():
"""Create and configure the Gradio interface"""
css = """
.gradio-container {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
.bear-title {
text-align: center;
color: #8B4513;
font-size: 2.5em;
margin-bottom: 20px;
}
.profile-links {
text-align: center;
margin: 20px 0;
padding: 15px;
background: linear-gradient(135deg, #FF6347 0%, #FFA500 100%);
border-radius: 10px;
color: white;
}
.profile-links a {
color: #fff;
text-decoration: none;
margin: 0 15px;
padding: 8px 16px;
background: rgba(255,255,255,0.2);
border-radius: 20px;
transition: all 0.3s ease;
display: inline-block;
}
.profile-links a:hover {
background: rgba(255,255,255,0.3);
transform: translateY(-2px);
}
.project-info {
text-align: center;
margin: 20px 0;
padding: 15px;
background: #f8f9fa;
border-radius: 10px;
border-left: 4px solid #8B4513;
}
"""
with gr.Blocks(css=css, title="π» Bear Species Detector") as demo:
gr.HTML("""
<div class="bear-title">
π» Bear Species Detector πΌ
</div>
<div class="profile-links">
<strong>π Explore More:</strong><br>
<a href="https://www.kaggle.com/williamwillj" target="_blank">π Kaggle Profile</a>
<a href="https://huggingface.co/williamj949" target="_blank">π€ HuggingFace Profile</a>
<a href="https://www.kaggle.com/code/williamwillj/bear-detector/notebook" target="_blank">π Training Notebook</a>
</div>
<div class="project-info">
<p style="font-size: 1.2em; color: #666; margin-bottom: 10px;">
Upload an image of a bear and I'll tell you what species it is!<br>
<em>Supports: Black Bear, Grizzly Bear, Polar Bear, Giant Panda, and even Teddy Bears! π§Έ</em>
</p>
</div>
""")
with gr.Row():
with gr.Column():
# Image input
image_input = gr.Image(
label="Upload Bear Image πΈ",
type="pil",
height=400
)
# Submit button
submit_btn = gr.Button(
"Detect Bear Type! π",
variant="primary",
size="lg"
)
# Get sample images
sample_images = get_sample_images()
# Only show examples if we have sample images
if sample_images:
gr.Examples(
examples=sample_images,
inputs=image_input,
label="Try these examples:"
)
else:
gr.HTML("""
<p style="text-align: center; color: #888; font-style: italic;">
π‘ Add sample images to the 'samples/' folder to see examples here!
</p>
""")
with gr.Column():
# Prediction output
prediction_output = gr.Label(
label="Prediction Confidence π",
num_top_classes=5
)
# Bear information output
info_output = gr.Markdown(
label="Bear Information π",
value="Upload an image to learn about the bear species!"
)
# Connect the interface
submit_btn.click(
fn=predict_and_explain,
inputs=image_input,
outputs=[prediction_output, info_output]
)
# Also trigger on image upload
image_input.change(
fn=handle_image_change,
inputs=image_input,
outputs=[prediction_output, info_output]
)
gr.HTML("""
<div style="text-align: center; margin-top: 30px; padding: 20px; background: #f8f9fa; border-radius: 10px;">
<h3 style="color: #8B4513; margin-bottom: 15px;">π Project Highlights</h3>
<div style="display: flex; justify-content: center; gap: 30px; flex-wrap: wrap; margin-bottom: 15px;">
<div>
<strong>π― Accuracy:</strong> 96%+ on the data set
</div>
<div>
<strong>π§ Tech Stack:</strong> FastAI + Gradio
</div>
</div>
<p style="color: #666; font-size: 0.9em;">
Check out my
<a href="https://www.kaggle.com/williamwillj" target="_blank" style="color: #8B4513;">Kaggle profile</a>
and
<a href="https://huggingface.co/williamj949" target="_blank" style="color: #8B4513;">Hugging Face profile</a>
for more ML projects!
</p>
<p style="color: #888; margin-top: 15px;">
Built with β€οΈ using FastAI and Gradio
</p>
</div>
""")
return demo
# Main execution
if __name__ == "__main__":
# Check if model is loaded
if learn is None:
print("β Error: Could not load the model. Please ensure 'bears_model_xx.pkl' is in the correct path.")
print("π‘ Tip: Update the model_path in the load_model() function to point to your saved model.")
else:
print("β
Model loaded successfully!")
print(f"π Classes: {learn.dls.vocab}")
demo = create_interface()
demo.launch(
share=True, # Set to True to create a public link
server_name="0.0.0.0", # Allow access from any IP
server_port=7860, # Default Gradio port
show_error=True)
|