Spaces:
Sleeping
Sleeping
File size: 12,604 Bytes
d9223ba e2a9e36 d9223ba |
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 |
import streamlit as st
import time
import utils
from PIL import Image
import numpy as np
import uuid
# Set page config
st.set_page_config(page_title="Annotation Assistant", layout="wide", page_icon="✨")
# --- Premium Custom CSS ---
st.markdown("""
<style>
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600&display=swap');
/* Global Theme */
html, body, [class*="css"] {
font-family: 'Outfit', sans-serif;
}
/* Background Gradient - "Deep Space" Theme */
.stApp {
background: radial-gradient(circle at top left, #1a202c, #0d1117);
}
/* Sidebar Styling */
section[data-testid="stSidebar"] {
background-color: #111827;
border-right: 1px solid #1F2937;
}
/* Hide Header and Default Elements */
header {visibility: hidden;}
.block-container {
padding-top: 1rem;
padding-bottom: 5rem;
max_width: 1000px;
}
/* Headers */
h1 {
background: -webkit-linear-gradient(45deg, #60A5FA, #34D399);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
font-weight: 600;
letter-spacing: -0.02em;
}
/* Dotted Upload Box */
[data-testid='stFileUploader'] section {
border: 1px dashed #4A5568;
background-color: rgba(255, 255, 255, 0.02);
border-radius: 16px;
padding: 4rem 2rem;
min-height: 300px;
align-items: center;
justify-content: center;
transition: all 0.3s ease;
}
[data-testid='stFileUploader'] section:hover {
background-color: rgba(255, 255, 255, 0.05);
border-color: #60A5FA;
cursor: pointer;
box-shadow: 0 0 25px rgba(96, 165, 250, 0.15);
transform: scale(1.01);
}
/* Buttons - "Glass" Style */
.stButton > button {
border: 1px solid rgba(255,255,255,0.1);
border-radius: 8px;
background: rgba(255,255,255,0.05);
color: #E2E8F0;
font-weight: 500;
backdrop-filter: blur(5px);
transition: all 0.2s ease;
}
.stButton > button:hover {
background: rgba(255,255,255,0.1);
border-color: #60A5FA;
color: #FFFFFF;
box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}
/* Secondary/Reset Button */
button[kind="secondary"] {
color: #F87171 !important;
border-color: rgba(248, 113, 113, 0.2) !important;
}
button[kind="secondary"]:hover {
background: rgba(248, 113, 113, 0.1) !important;
border-color: #F87171 !important;
box-shadow: 0 0 10px rgba(248, 113, 113, 0.2);
}
/* Session Buttons in Sidebar */
.session-btn {
width: 100%;
text-align: left;
margin-bottom: 5px;
}
/* Metrics Bar - Floating "Pill" */
.metric-pill {
display: flex;
align-items: center;
justify-content: center;
gap: 12px;
background: rgba(16, 24, 39, 0.8);
border: 1px solid #2D3748;
padding: 10px 24px;
border-radius: 100px;
margin: 20px auto; /* Centered */
width: fit-content;
font-size: 0.9rem;
color: #94A3B8;
box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.3);
}
.metric-value {
color: #34D399;
font-family: 'JetBrains Mono', monospace;
font-weight: 600;
}
/* Reasoning Cards - Centered & Wide */
.reasoning-container {
margin-top: 20px;
background: rgba(30, 41, 59, 0.3);
border-radius: 12px;
padding: 15px;
border: 1px solid rgba(255,255,255,0.05);
}
.reasoning-card {
background: rgba(255,255,255,0.02);
border-left: 3px solid #3B82F6;
padding: 12px 16px;
margin-bottom: 10px;
border-radius: 0 8px 8px 0;
}
.reasoning-label {
font-weight: 600;
color: #E2E8F0;
font-size: 0.95rem;
margin-bottom: 4px;
}
.reasoning-text {
font-size: 0.85rem;
color: #94A3B8;
line-height: 1.5;
}
/* Input Area */
.stChatInputContainer {
padding-bottom: 2rem;
}
/* Slider Customization */
div[data-testid="stSlider"] > div {
max_width: 300px;
margin: auto;
}
/* CENTER IMAGES */
div[data-testid="stImage"] {
display: flex;
justify-content: center;
width: 100%;
}
div[data-testid="stImage"] > img {
margin: 0 auto;
}
</style>
""", unsafe_allow_html=True)
# --- State Management ---
if "model_loaded" not in st.session_state:
st.session_state.model_loaded = False
if "sessions" not in st.session_state:
# Structure: { session_id: { name, history, detections, image, metrics, timestamp } }
st.session_state.sessions = {}
if "active_session_id" not in st.session_state:
st.session_state.active_session_id = None
# Helper 1: Create a new session
def create_session(name="New Chat"):
session_id = str(uuid.uuid4())
st.session_state.sessions[session_id] = {
"name": name,
"history": [],
"detections": [],
"image": None,
"metrics": {},
"created_at": time.time()
}
st.session_state.active_session_id = session_id
return session_id
# Helper 2: Get active session data
def get_active_session():
if not st.session_state.active_session_id:
create_session()
return st.session_state.sessions[st.session_state.active_session_id]
# Ensure at least one session exists
if not st.session_state.sessions:
create_session()
current_session = get_active_session()
# --- Sidebar (Session Manager) ---
with st.sidebar:
st.markdown("### 🗂️ Sessions")
if st.button("➕ New Chat", use_container_width=True, type="primary"):
create_session()
st.rerun()
st.markdown("---")
# Sort sessions by recency
sorted_sessions = sorted(
st.session_state.sessions.items(),
key=lambda x: x[1]['created_at'],
reverse=True
)
for s_id, s_data in sorted_sessions:
# Hide empty "New Chat" sessions from the list unless active
if s_data['image'] is None:
continue
is_active = (s_id == st.session_state.active_session_id)
display_name = s_data['name']
icon = "📂" if is_active else "📝"
label = f"{icon} {display_name}"
if st.button(label, key=f"sess_{s_id}", use_container_width=True, type="secondary" if not is_active else "primary"):
st.session_state.active_session_id = s_id
st.rerun()
# --- Model Loading ---
if not st.session_state.model_loaded:
with st.spinner("Initializing AI Core..."):
processor, model = utils.load_model()
if processor and model:
st.session_state.model_loaded = True
st.session_state.processor = processor
st.session_state.model = model
st.rerun()
else:
st.error("Model Engine Failure.")
st.stop()
# --- Main Workspace ---
# Header
col_logo, col_space = st.columns([6, 1])
with col_logo:
if current_session['name'] == "New Chat":
st.markdown("# Annotation Assistant")
else:
st.markdown(f"# {current_session['name']}")
# Logic
if current_session['image'] is None:
# --- Upload State ---
st.markdown(
"<h3 style='text-align: center; color: #94A3B8; border: none;'>Upload an image to start this session</h3>",
unsafe_allow_html=True
)
uploaded_file = st.file_uploader(
"Upload Image",
type=["jpg", "png", "jpeg"],
key=f"uploader_{st.session_state.active_session_id}",
label_visibility="collapsed"
)
if uploaded_file:
image = Image.open(uploaded_file).convert("RGB")
current_session['image'] = image
current_session['name'] = uploaded_file.name
st.rerun()
else:
# --- Analysis State ---
# Image Controls
img_width = st.slider("Adjust View Size", 300, 1500, 700, 50, help="Drag to resize the image view")
st.markdown("<br>", unsafe_allow_html=True)
# 1. Main visual (Hero)
display_image = current_session['image'].copy()
if current_session['detections']:
display_image = utils.draw_boxes(display_image, current_session['detections'])
st.image(display_image, width=img_width)
# 2. Results Actions & Metrics
if current_session['detections']:
# Metrics Row
if current_session['metrics']:
m = current_session['metrics']
st.markdown(f"""
<div class='metric-pill'>
<span>Inference <span class='metric-value'>{m.get('inference_time', 0)}s</span></span>
<span style='color: #4B5563'>|</span>
<span>Total <span class='metric-value'>{m.get('total_time', 0)}s</span></span>
<span style='color: #4B5563'>|</span>
<span>Tokens <span class='metric-value'>{m.get('token_count', 0)}</span></span>
</div>
""", unsafe_allow_html=True)
# Download Row
c1, c2, c3 = st.columns([1, 1, 3]) # Bias to left
with c1:
# UPDATED: Pass usage metadata for Strict COCO compatibility
coco_json = utils.convert_to_coco(
current_session['detections'],
image_size=current_session['image'].size,
filename=current_session['name']
)
st.download_button("Download JSON", coco_json, "annotations.json", "application/json", use_container_width=True)
with c2:
zip_buffer = utils.create_crops_zip(current_session['image'], current_session['detections'])
st.download_button("Download ZIP", zip_buffer, "crops.zip", "application/zip", use_container_width=True)
# 3. Reasoning Stream (Below)
st.markdown("<div style='height: 20px;'></div>", unsafe_allow_html=True)
st.markdown("### AI Insights")
with st.container():
st.markdown("<div class='reasoning-container'>", unsafe_allow_html=True)
for det in current_session['detections'][::-1]:
label = det.get('label', 'Object')
reasoning = det.get('reasoning', None)
if not reasoning: reasoning = "Object detected based on visual features."
st.markdown(f"""
<div class='reasoning-card'>
<div class='reasoning-label'>{label}</div>
<div class='reasoning-text'>{reasoning}</div>
</div>
""", unsafe_allow_html=True)
st.markdown("</div>", unsafe_allow_html=True)
else:
# Image loaded but no detections
st.markdown(
"<div style='text-align: center; margin-top: 20px; color: #64748B; font-style: italic;'>"
"Waiting for instructions... Use the chat bar below."
"</div>",
unsafe_allow_html=True
)
# --- Floating Chat Bar ---
st.markdown("<br>", unsafe_allow_html=True)
prompt = st.chat_input("Describe objects to detect...")
if prompt:
if current_session['image'] is None:
st.error("Please upload an image first.")
else:
# Warning for HF Spaces Free Tier
if "cpu" in str(st.session_state.get('device', 'cpu')):
st.info("ℹ️ Running on CPU (Free Tier). Complex scenes may take 30-60s to analyze.")
with st.status("Analyzing Scene...", expanded=True) as status:
detections, updated_history, raw_text, metrics = utils.get_bounding_boxes(
current_session['image'],
prompt,
current_session['history'],
st.session_state.processor,
st.session_state.model
)
if detections:
current_session['detections'] = utils.smart_merge_detections(current_session['detections'], detections)
current_session['history'] = updated_history
current_session['metrics'] = metrics
status.update(label="Complete", state="complete", expanded=False)
st.rerun()
else:
status.update(label="No matches found.", state="error", expanded=False)
st.toast(f"No match found.", icon="⚠️")
|