Spaces:
Running
on
Zero
Running
on
Zero
File size: 16,218 Bytes
a7d8c02 8d6efc2 24c3479 a7d8c02 830576d a7d8c02 4ab3467 8d6efc2 a7d8c02 24c3479 a7d8c02 24c3479 a7d8c02 8d6efc2 a7d8c02 24c3479 a7d8c02 24c3479 a7d8c02 24c3479 a7d8c02 8d6efc2 a7d8c02 24c3479 8d6efc2 24c3479 8d6efc2 a7d8c02 24c3479 8d6efc2 0d690c9 24c3479 830576d 24c3479 a7d8c02 24c3479 a7d8c02 24c3479 c045c61 a7d8c02 24c3479 e7a7959 0d690c9 3d6f51a 0d690c9 3d6f51a e7a7959 3d6f51a e7a7959 3d6f51a 0d690c9 3d6f51a a7d8c02 24c3479 a7d8c02 24c3479 a7d8c02 24c3479 8d6efc2 a7d8c02 24c3479 0d690c9 24c3479 0d690c9 24c3479 0d690c9 24c3479 c045c61 24c3479 c045c61 a7d8c02 24c3479 a7d8c02 24c3479 e7a7959 0d690c9 e7a7959 0d690c9 e7a7959 24c3479 8d6efc2 24c3479 a7d8c02 24c3479 8d6efc2 24c3479 a7d8c02 24c3479 a7d8c02 8d6efc2 24c3479 a7d8c02 8d6efc2 a7d8c02 8d6efc2 a7d8c02 8d6efc2 24c3479 8d6efc2 24c3479 8d6efc2 24c3479 a7d8c02 24c3479 a7d8c02 8d6efc2 24c3479 8d6efc2 24c3479 a7d8c02 8d6efc2 24c3479 a7d8c02 8d6efc2 a7d8c02 24c3479 8d6efc2 a7d8c02 24c3479 8d6efc2 a7d8c02 8d6efc2 a7d8c02 24c3479 a7d8c02 8d6efc2 a7d8c02 24c3479 8d6efc2 a7d8c02 8d6efc2 a7d8c02 8d6efc2 a7d8c02 24c3479 a7d8c02 24c3479 a7d8c02 24c3479 a7d8c02 24c3479 a7d8c02 24c3479 a7d8c02 24c3479 8d6efc2 a7d8c02 |
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 |
"""
Model management for Frame 0 Laboratory for MIA
BAGEL 7B integration via API calls
"""
import spaces
import logging
import tempfile
import os
from typing import Optional, Dict, Any, Tuple
from PIL import Image
from gradio_client import Client, handle_file
from config import get_device_config
from utils import clean_memory, safe_execute
logger = logging.getLogger(__name__)
class BaseImageAnalyzer:
"""Base class for image analysis models"""
def __init__(self):
self.is_initialized = False
self.device_config = get_device_config()
def initialize(self) -> bool:
"""Initialize the model"""
raise NotImplementedError
def analyze_image(self, image: Image.Image) -> Tuple[str, Dict[str, Any]]:
"""Analyze image and return description"""
raise NotImplementedError
def cleanup(self) -> None:
"""Clean up model resources"""
clean_memory()
class BagelAPIAnalyzer(BaseImageAnalyzer):
"""BAGEL 7B model via API calls to working Space"""
def __init__(self):
super().__init__()
self.client = None
self.space_url = "Malaji71/Bagel-7B-Demo"
self.api_endpoint = "/image_understanding"
def initialize(self) -> bool:
"""Initialize BAGEL API client"""
if self.is_initialized:
return True
try:
logger.info("Initializing BAGEL API client...")
self.client = Client(self.space_url)
self.is_initialized = True
logger.info("BAGEL API client initialized successfully")
return True
except Exception as e:
logger.error(f"BAGEL API client initialization failed: {e}")
return False
def _extract_camera_setup(self, description: str) -> Optional[str]:
"""Extract camera setup recommendation from BAGEL response"""
try:
# Look for CAMERA_SETUP section
if "CAMERA_SETUP:" in description:
parts = description.split("CAMERA_SETUP:")
if len(parts) > 1:
camera_part = parts[1].strip()
# Clean up any additional formatting
camera_part = camera_part.replace("\n", " ").strip()
return camera_part
# Alternative patterns for camera recommendations
camera_patterns = [
"Shot on ",
"Camera: ",
"Equipment: ",
"Recommended camera:",
"Camera setup:"
]
for pattern in camera_patterns:
if pattern in description:
# Extract text after the pattern
idx = description.find(pattern)
camera_text = description[idx:].split('.')[0] # Take first sentence
if len(camera_text) > len(pattern) + 10: # Ensure meaningful content
return camera_text.strip()
return None
except Exception as e:
logger.warning(f"Failed to extract camera setup: {e}")
return None
def _save_temp_image(self, image: Image.Image) -> str:
"""Save image to temporary file for API call"""
try:
# Create temporary file
temp_file = tempfile.NamedTemporaryFile(delete=False, suffix='.png')
temp_path = temp_file.name
temp_file.close()
# Save image
if image.mode != 'RGB':
image = image.convert('RGB')
image.save(temp_path, 'PNG')
return temp_path
except Exception as e:
logger.error(f"Failed to save temporary image: {e}")
return None
def _cleanup_temp_file(self, file_path: str):
"""Clean up temporary file"""
try:
if file_path and os.path.exists(file_path):
os.unlink(file_path)
except Exception as e:
logger.warning(f"Failed to cleanup temp file: {e}")
@spaces.GPU(duration=60)
def analyze_image(self, image: Image.Image, prompt: str = None) -> Tuple[str, Dict[str, Any]]:
"""Analyze image using BAGEL API"""
if not self.is_initialized:
success = self.initialize()
if not success:
return "BAGEL API not available", {"error": "API initialization failed"}
temp_path = None
# Initialize metadata early
metadata = {
"model": "BAGEL-7B-API",
"device": "api",
"confidence": 0.9,
"api_endpoint": self.api_endpoint,
"space_url": self.space_url,
"prompt_used": prompt,
"has_camera_suggestion": False
}
try:
# Default prompt for detailed image analysis
if prompt is None:
prompt = """You are analyzing a photograph for FLUX image generation. Provide a detailed analysis in two sections:
1. DESCRIPTION: Start directly with the subject (e.g., "A color photograph showing..." or "A black and white photograph depicting..."). First, determine if this is a photograph, illustration, or artwork. Then describe the visual elements, composition, lighting, colors (be specific about the color palette - warm tones, cool tones, monochrome, etc.), artistic style, mood, and atmosphere. Also mention the image format/aspect ratio (square, portrait, landscape, widescreen, etc.) and how the composition uses this format. Write as a flowing paragraph without numbered lists.
2. CAMERA_SETUP: Based on the photographic characteristics, scene type, and aspect ratio you observe, recommend the specific camera system and lens that would realistically capture this type of scene:
- For street/documentary photography: suggest cameras like Canon EOS R6, Sony A7 IV, Leica Q2 with 35mm or 24-70mm lenses
- For portraits: suggest cameras like Canon EOS R5, Sony A7R V with 85mm or 135mm lenses
- For landscapes/widescreen: suggest cameras like Phase One XT, Fujifilm GFX with wide-angle lenses (16-35mm, 24-70mm)
- For sports/action: suggest cameras like Canon EOS-1D X, Sony A9 III with telephoto lenses
- For macro: suggest specialized macro lenses
- For cinematic/widescreen formats: suggest cinema cameras or full-frame with appropriate aspect ratios
Be specific about focal length, aperture, and shooting style based on what you actually see in the image dimensions and content.
Analyze carefully and be accurate about colors, image type, and proportions."""
# Save image to temporary file
temp_path = self._save_temp_image(image)
if not temp_path:
return "Image processing failed", {"error": "Could not save image"}
logger.info("Calling BAGEL API for image analysis...")
# Call BAGEL API
result = self.client.predict(
image=handle_file(temp_path),
prompt=prompt,
show_thinking=False,
do_sample=False,
text_temperature=0.3,
max_new_tokens=512,
api_name=self.api_endpoint
)
# Extract response (API returns tuple: (image_result, text_response))
if isinstance(result, tuple) and len(result) >= 2:
description = result[1] if result[1] else result[0]
else:
description = str(result)
# Clean up the description and extract camera setup if present
if isinstance(description, str) and description.strip():
description = description.strip()
# Store camera setup separately if found
camera_setup = self._extract_camera_setup(description)
if camera_setup:
metadata["camera_setup"] = camera_setup
metadata["has_camera_suggestion"] = True
else:
metadata["has_camera_suggestion"] = False
else:
description = "Detailed image analysis completed successfully"
metadata["has_camera_suggestion"] = False
# Update final metadata
metadata.update({
"response_length": len(description)
})
logger.info(f"BAGEL API analysis complete: {len(description)} characters")
return description, metadata
except Exception as e:
logger.error(f"BAGEL API analysis failed: {e}")
return "API analysis failed", {"error": str(e), "model": "BAGEL-7B-API"}
finally:
# Always cleanup temporary file
if temp_path:
self._cleanup_temp_file(temp_path)
def analyze_for_flux_prompt(self, image: Image.Image) -> Tuple[str, Dict[str, Any]]:
"""Analyze image specifically for FLUX prompt generation"""
flux_prompt = """You are analyzing a photograph for professional FLUX generation. Provide two sections:
1. DESCRIPTION: Determine first if this is a real photograph, digital artwork, or illustration. Then create a detailed, flowing description starting directly with the subject. Be precise about:
- Image type (photograph, illustration, artwork)
- Color palette (specify if color or black/white, warm/cool tones, specific colors)
- Photographic style (street, portrait, landscape, documentary, artistic, etc.)
- Composition, lighting, mood, and atmosphere
Write as a single coherent paragraph.
2. CAMERA_SETUP: Recommend specific professional equipment that would realistically capture this exact scene:
- Street/urban scenes: Canon EOS R6, Sony A7 IV, Leica Q2 with 24-70mm f/2.8 or 35mm f/1.4
- Portraits: Canon EOS R5, Sony A7R V, Hasselblad X2D with 85mm f/1.4 or 135mm f/2
- Landscapes: Phase One XT, Fujifilm GFX 100S with 16-35mm f/2.8 or 40mm f/4
- Documentary: Canon EOS-1D X, Sony A9 III with 24-105mm f/4 or 70-200mm f/2.8
- Action/Sports: Canon EOS R3, Sony A1 with 300mm f/2.8 or 400mm f/2.8
Match the equipment to what you actually observe in the scene type and shooting conditions."""
return self.analyze_image(image, flux_prompt)
def cleanup(self) -> None:
"""Clean up API client resources"""
try:
if hasattr(self, 'client'):
self.client = None
super().cleanup()
logger.info("BAGEL API resources cleaned up")
except Exception as e:
logger.warning(f"BAGEL API cleanup warning: {e}")
class FallbackAnalyzer(BaseImageAnalyzer):
"""Simple fallback analyzer when BAGEL API is not available"""
def __init__(self):
super().__init__()
def initialize(self) -> bool:
"""Fallback is always ready"""
self.is_initialized = True
return True
def analyze_image(self, image: Image.Image) -> Tuple[str, Dict[str, Any]]:
"""Provide basic image description"""
try:
# Basic image analysis
width, height = image.size
mode = image.mode
# Simple descriptive text based on image properties
aspect_ratio = width / height
if aspect_ratio > 1.5:
orientation = "landscape"
camera_suggestion = "wide-angle lens, landscape photography"
elif aspect_ratio < 0.75:
orientation = "portrait"
camera_suggestion = "portrait lens, shallow depth of field"
else:
orientation = "square"
camera_suggestion = "standard lens, balanced composition"
description = f"A {orientation} format image with professional composition. The image shows clear detail and good visual balance, suitable for high-quality reproduction. Recommended camera setup: {camera_suggestion}, professional lighting with careful attention to exposure and color balance."
metadata = {
"model": "Fallback",
"device": "cpu",
"confidence": 0.6,
"image_size": f"{width}x{height}",
"color_mode": mode,
"orientation": orientation,
"aspect_ratio": round(aspect_ratio, 2)
}
return description, metadata
except Exception as e:
logger.error(f"Fallback analysis failed: {e}")
return "Professional image suitable for detailed analysis and prompt generation", {"error": str(e), "model": "Fallback"}
class ModelManager:
"""Manager for handling image analysis models"""
def __init__(self, preferred_model: str = "bagel-api"):
self.preferred_model = preferred_model
self.analyzers = {}
self.current_analyzer = None
def get_analyzer(self, model_name: str = None) -> Optional[BaseImageAnalyzer]:
"""Get or create analyzer for specified model"""
model_name = model_name or self.preferred_model
if model_name not in self.analyzers:
if model_name == "bagel-api":
self.analyzers[model_name] = BagelAPIAnalyzer()
elif model_name == "fallback":
self.analyzers[model_name] = FallbackAnalyzer()
else:
logger.warning(f"Unknown model: {model_name}, using fallback")
model_name = "fallback"
self.analyzers[model_name] = FallbackAnalyzer()
return self.analyzers[model_name]
def analyze_image(self, image: Image.Image, model_name: str = None, analysis_type: str = "detailed") -> Tuple[str, Dict[str, Any]]:
"""Analyze image with specified or preferred model"""
# Try preferred model first
analyzer = self.get_analyzer(model_name)
if analyzer is None:
return "No analyzer available", {"error": "Model not found"}
# Choose analysis method based on type
if analysis_type == "flux" and hasattr(analyzer, 'analyze_for_flux_prompt'):
success, result = safe_execute(analyzer.analyze_for_flux_prompt, image)
else:
success, result = safe_execute(analyzer.analyze_image, image)
if success and result[1].get("error") is None:
return result
else:
# Fallback to simple analyzer if main model fails
logger.warning(f"Primary model failed, using fallback: {result}")
fallback_analyzer = self.get_analyzer("fallback")
fallback_success, fallback_result = safe_execute(fallback_analyzer.analyze_image, image)
if fallback_success:
return fallback_result
else:
return "All analyzers failed", {"error": "Complete analysis failure"}
def cleanup_all(self) -> None:
"""Clean up all model resources"""
for analyzer in self.analyzers.values():
analyzer.cleanup()
self.analyzers.clear()
clean_memory()
logger.info("All analyzers cleaned up")
# Global model manager instance
model_manager = ModelManager(preferred_model="bagel-api")
def analyze_image(image: Image.Image, model_name: str = None, analysis_type: str = "detailed") -> Tuple[str, Dict[str, Any]]:
"""
Convenience function for image analysis using BAGEL API
Args:
image: PIL Image to analyze
model_name: Optional model name ("bagel-api" or "fallback")
analysis_type: Type of analysis ("detailed" or "flux")
Returns:
Tuple of (description, metadata)
"""
return model_manager.analyze_image(image, model_name, analysis_type)
# Export main components
__all__ = [
"BaseImageAnalyzer",
"BagelAPIAnalyzer",
"FallbackAnalyzer",
"ModelManager",
"model_manager",
"analyze_image"
] |