Spaces:
Sleeping
Sleeping
File size: 14,125 Bytes
928bc12 e9ff51f 928bc12 0b5da16 928bc12 e9ff51f 928bc12 e9ff51f 928bc12 | 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 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 | """
VISUAL CONVERSATIONAL INTELLIGENCE ENGINE
==========================================
A pluggable, image-grounded multi-turn conversational system.
Architecture:
- Session-based image memory (stored once, queried multiple times)
- Vision-Language Model (BLIP) for image-question answering
- REST-style core logic (pure functions)
- Gradio UI for demonstration
Academic Purpose:
Demonstrates AI system design for visual question answering with
conversational context, suitable for research evaluation.
"""
import gradio as gr
from PIL import Image
from transformers import BlipProcessor, BlipForQuestionAnswering
import torch
from typing import Optional, Tuple, List
import uuid
# ============================================================================
# SESSION MEMORY MANAGEMENT
# ============================================================================
class SessionMemory:
"""
Manages session state for image-grounded conversations.
Each session stores:
- uploaded_image: PIL Image object
- conversation_history: List of (question, answer) tuples
- session_id: Unique identifier for the session
"""
def __init__(self):
self.sessions = {}
def create_session(self) -> str:
"""Create a new session and return its ID."""
session_id = str(uuid.uuid4())
self.sessions[session_id] = {
'uploaded_image': None,
'conversation_history': []
}
return session_id
def store_image(self, session_id: str, image: Image.Image) -> None:
"""Store an image in session memory."""
if session_id in self.sessions:
self.sessions[session_id]['uploaded_image'] = image
def get_image(self, session_id: str) -> Optional[Image.Image]:
"""Retrieve the stored image from session."""
if session_id in self.sessions:
return self.sessions[session_id]['uploaded_image']
return None
def add_to_history(self, session_id: str, question: str, answer: str) -> None:
"""Add a Q&A pair to conversation history."""
if session_id in self.sessions:
self.sessions[session_id]['conversation_history'].append((question, answer))
def get_history(self, session_id: str) -> List[Tuple[str, str]]:
"""Retrieve conversation history."""
if session_id in self.sessions:
return self.sessions[session_id]['conversation_history']
return []
def reset_session(self, session_id: str) -> None:
"""Clear all session data (image + conversation history)."""
if session_id in self.sessions:
self.sessions[session_id] = {
'uploaded_image': None,
'conversation_history': []
}
# ============================================================================
# VISION-LANGUAGE MODEL INITIALIZATION
# ============================================================================
class VisualQAEngine:
"""
Core inference engine using BLIP (Bootstrapping Language-Image Pre-training).
BLIP is a vision-language model that can answer questions about images.
We use the pretrained model without any fine-tuning.
"""
def __init__(self, model_name: str = "Salesforce/blip-vqa-base"):
"""
Initialize the BLIP model and processor.
Args:
model_name: HuggingFace model identifier
"""
print(f"Loading model: {model_name}")
self.processor = BlipProcessor.from_pretrained(model_name)
self.model = BlipForQuestionAnswering.from_pretrained(model_name)
# Use GPU if available, otherwise CPU (for HuggingFace Spaces compatibility)
self.device = "cuda" if torch.cuda.is_available() else "cpu"
self.model.to(self.device)
print(f"Model loaded on device: {self.device}")
def answer_question(self, image: Image.Image, question: str) -> str:
"""
Generate an answer to a question about the image.
This is a PURE FUNCTION suitable for REST APIs:
- Takes image + question as input
- Returns answer as output
- No side effects
Args:
image: PIL Image object
question: User's question about the image
Returns:
Generated answer grounded in the image
"""
# Preprocess image and question
inputs = self.processor(image, question, return_tensors="pt").to(self.device)
# Generate answer using the vision-language model
with torch.no_grad():
outputs = self.model.generate(**inputs, max_length=50)
# Decode the generated answer
answer = self.processor.decode(outputs[0], skip_special_tokens=True)
return answer
# ============================================================================
# APPLICATION LOGIC (REST-STYLE PURE FUNCTIONS)
# ============================================================================
def validate_question(question: str, image: Optional[Image.Image]) -> Tuple[bool, str]:
"""
Validate that conditions are met for answering a question.
Validation rules:
1. Image must be uploaded
2. Question must not be empty
Args:
question: User's input question
image: Stored image (or None)
Returns:
(is_valid, error_message)
"""
if image is None:
return False, "β οΈ Please upload an image first before asking questions."
if not question or question.strip() == "":
return False, "β οΈ Please enter a question."
return True, ""
def process_question(
vqa_engine: VisualQAEngine,
session_memory: SessionMemory,
session_id: str,
question: str
) -> Tuple[str, List[Tuple[str, str]]]:
"""
Process a user question and generate an image-grounded answer.
This function orchestrates the core conversational flow:
1. Validate inputs
2. Retrieve image from session
3. Generate answer using vision-language model
4. Update conversation history
5. Return answer + updated history
Args:
vqa_engine: Visual QA inference engine
session_memory: Session storage
session_id: Current session identifier
question: User's question
Returns:
(answer, updated_conversation_history)
"""
# Retrieve stored image
image = session_memory.get_image(session_id)
# Validate inputs
is_valid, error_msg = validate_question(question, image)
if not is_valid:
return error_msg, session_memory.get_history(session_id)
# Generate image-grounded answer
answer = vqa_engine.answer_question(image, question)
# Update conversation history
session_memory.add_to_history(session_id, question, answer)
# Return answer and updated history
return answer, session_memory.get_history(session_id)
def handle_image_upload(
session_memory: SessionMemory,
session_id: str,
image: Image.Image
) -> str:
"""
Handle image upload and store in session memory.
Args:
session_memory: Session storage
session_id: Current session identifier
image: Uploaded PIL Image
Returns:
Confirmation message
"""
if image is None:
return "β οΈ No image uploaded."
# Store image in session
session_memory.store_image(session_id, image)
return "β
Image uploaded successfully! You can now ask questions about this image."
def reset_conversation(
session_memory: SessionMemory,
session_id: str
) -> Tuple[str, List, None]:
"""
Reset the conversation (clear image and history).
Args:
session_memory: Session storage
session_id: Current session identifier
Returns:
(status_message, empty_history, None_for_image)
"""
session_memory.reset_session(session_id)
return "π Conversation reset. Please upload a new image.", [], None
# ============================================================================
# GRADIO UI INTERFACE
# ============================================================================
def format_history_for_chatbot(history: List[Tuple[str, str]]) -> List[dict]:
"""
Convert internal (question, answer) tuples into
Gradio v4 Chatbot message format.
"""
messages = []
for q, a in history:
messages.append({"role": "user", "content": q})
messages.append({"role": "assistant", "content": a})
return messages
def create_gradio_interface(vqa_engine: VisualQAEngine, session_memory: SessionMemory) -> gr.Blocks:
"""
Create the Gradio UI for the Visual Conversational Intelligence Engine.
UI Components:
- Image upload
- Question input
- Chat history display
- Reset button
"""
with gr.Blocks(title="Visual Conversational Intelligence Engine") as demo:
# Session state (hidden)
session_id = gr.State(value=session_memory.create_session())
# Header
gr.Markdown("""
# π Visual Conversational Intelligence Engine
**An image-grounded multi-turn conversational system**
### How to use:
1. **Upload an image** (required)
2. **Ask questions** about the image
3. **Continue the conversation** - ask follow-up questions without re-uploading
4. **Reset** to start over with a new image
### Important:
- All answers are strictly grounded in the uploaded image
- Questions unrelated to the image will be politely declined
- The system uses BLIP (Vision-Language Model) for inference
""")
with gr.Row():
with gr.Column(scale=1):
# Image upload section
gr.Markdown("### π€ Step 1: Upload Image")
image_input = gr.Image(
type="pil",
label="Upload an image to analyze",
height=300
)
upload_status = gr.Textbox(
label="Upload Status",
interactive=False,
lines=1
)
# Upload button
upload_btn = gr.Button("π₯ Upload Image", variant="primary")
with gr.Column(scale=1):
# Question and conversation section
gr.Markdown("### π¬ Step 2: Ask Questions")
chatbot = gr.Chatbot(
label="Conversation History",
height=300
)
question_input = gr.Textbox(
label="Your Question",
placeholder="Ask a question about the uploaded image...",
lines=2
)
with gr.Row():
submit_btn = gr.Button("π Ask Question", variant="primary")
reset_btn = gr.Button("π Reset Conversation", variant="secondary")
# Event handlers
def upload_image_handler(image, session_id):
"""Handle image upload event."""
status = handle_image_upload(session_memory, session_id, image)
return status
def ask_question_handler(question, session_id):
answer, history = process_question(
vqa_engine, session_memory, session_id, question
)
formatted_history = format_history_for_chatbot(history)
return formatted_history, "" # Return updated history and clear input
def reset_handler(session_id):
status, history, image = reset_conversation(session_memory, session_id)
return status, [], image
# Wire up events
upload_btn.click(
fn=upload_image_handler,
inputs=[image_input, session_id],
outputs=[upload_status]
)
submit_btn.click(
fn=ask_question_handler,
inputs=[question_input, session_id],
outputs=[chatbot, question_input]
)
question_input.submit(
fn=ask_question_handler,
inputs=[question_input, session_id],
outputs=[chatbot, question_input]
)
reset_btn.click(
fn=reset_handler,
inputs=[session_id],
outputs=[upload_status, chatbot, image_input]
)
# Footer
gr.Markdown("""
---
**Academic Prototype** | Demonstrates AI system design for visual question answering
**Tech Stack:** Python β’ HuggingFace BLIP β’ Gradio β’ Session-based Memory
""")
return demo
# ============================================================================
# MAIN APPLICATION ENTRY POINT
# ============================================================================
def main():
"""
Initialize and launch the Visual Conversational Intelligence Engine.
"""
print("=" * 60)
print("VISUAL CONVERSATIONAL INTELLIGENCE ENGINE")
print("=" * 60)
# Initialize core components
print("\n[1/3] Initializing Vision-Language Model...")
vqa_engine = VisualQAEngine(model_name="Salesforce/blip-vqa-base")
print("\n[2/3] Setting up session memory...")
session_memory = SessionMemory()
print("\n[3/3] Creating Gradio interface...")
demo = create_gradio_interface(vqa_engine, session_memory)
print("\n" + "=" * 60)
print("π Launching application...")
print("=" * 60)
# Launch the application
demo.launch(
share=False, # Set to True for public sharing
server_name="0.0.0.0", # Allow external access
server_port=7860 # Standard Gradio port
)
if __name__ == "__main__":
main()
|