Spaces:
Running
on
Zero
Running
on
Zero
File size: 29,153 Bytes
0ef1e7a |
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 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 |
from typing import Dict, List, Union, Any, Optional, Callable
from urllib.parse import quote
def get_akc_breeds_link(breed: str) -> str:
"""Generate AKC breed page URL with intelligent name handling."""
breed_name = breed.lower()
breed_name = breed_name.replace('_', '-')
breed_name = breed_name.replace("'", '')
breed_name = breed_name.replace(" ", '-')
special_cases = {
'mexican-hairless': 'xoloitzcuintli',
'brabancon-griffon': 'brussels-griffon',
'bull-mastiff': 'bullmastiff',
'walker-hound': 'treeing-walker-coonhound'
}
breed_name = special_cases.get(breed_name, breed_name)
return f"https://www.akc.org/dog-breeds/{breed_name}/"
def get_color_scheme(is_single_dog: bool) -> Union[str, List[str]]:
"""Get color scheme for dog detection visualization."""
single_dog_color = '#34C759' # 清爽的綠色作為單狗顏色
color_list = [
'#FF5733', # 珊瑚紅
'#28A745', # 深綠色
'#3357FF', # 寶藍色
'#FF33F5', # 粉紫色
'#FFB733', # 橙黃色
'#33FFF5', # 青藍色
'#A233FF', # 紫色
'#FF3333', # 紅色
'#33FFB7', # 青綠色
'#FFE033' # 金黃色
]
return single_dog_color if is_single_dog else color_list
def format_warning_html(message: str) -> str:
"""Format warning messages in a consistent style."""
return f'''
<div class="dog-info-card">
<div class="breed-info">
<p class="warning-message">
<span class="icon">⚠️</span>
{message}
</p>
</div>
</div>
'''
def format_error_message(color: str, index: int) -> str:
"""Format error message when confidence is too low."""
return f'''
<div class="dog-info-card" style="border-left: 8px solid {color};">
<div class="dog-info-header" style="background-color: {color}10;">
<span class="dog-label" style="color: {color};">Dog {index}</span>
</div>
<div class="breed-info">
<div class="warning-message">
<span class="icon">⚠️</span>
The image is unclear or the breed is not in the dataset. Please upload a clearer image.
</div>
</div>
</div>
'''
def format_description_html(description: Dict[str, Any], breed: str) -> str:
"""Format basic breed description with tooltips."""
if not isinstance(description, dict):
return f"<p>{description}</p>"
fields_order = [
"Size", "Lifespan", "Temperament", "Exercise Needs",
"Grooming Needs", "Care Level", "Good with Children",
"Description"
]
html_parts = []
for field in fields_order:
if field in description:
value = description[field]
tooltip_html = format_tooltip(field, value)
html_parts.append(f'<li style="margin-bottom: 10px;">{tooltip_html}</li>')
# Add any remaining fields
for key, value in description.items():
if key not in fields_order and key != "Breed":
html_parts.append(f'<li style="margin-bottom: 10px;"><strong>{key}:</strong> {value}</li>')
return f'<ul style="list-style-type: none; padding-left: 0;">{" ".join(html_parts)}</ul>'
def format_tooltip(key: str, value: str) -> str:
"""Format tooltip with content for each field."""
tooltip_contents = {
"Size": {
"title": "Size Categories",
"items": [
"Small: Under 20 pounds",
"Medium: 20-60 pounds",
"Large: Over 60 pounds",
"Giant: Over 100 pounds",
"Varies: Depends on variety"
]
},
"Exercise Needs": {
"title": "Exercise Needs",
"items": [
"Low: Short walks and play sessions",
"Moderate: 1-2 hours of daily activity",
"High: Extensive exercise (2+ hours/day)",
"Very High: Constant activity and mental stimulation needed"
]
},
"Grooming Needs": {
"title": "Grooming Requirements",
"items": [
"Low: Basic brushing, occasional baths",
"Moderate: Weekly brushing, occasional grooming",
"High: Daily brushing, frequent professional grooming needed",
"Professional care recommended for all levels"
]
},
"Care Level": {
"title": "Care Level Explained",
"items": [
"Low: Basic care and attention needed",
"Moderate: Regular care and routine needed",
"High: Significant time and attention needed",
"Very High: Extensive care, training and attention required"
]
},
"Good with Children": {
"title": "Child Compatibility",
"items": [
"Yes: Excellent with kids, patient and gentle",
"Moderate: Good with older children",
"No: Better suited for adult households"
]
},
"Lifespan": {
"title": "Average Lifespan",
"items": [
"Short: 6-8 years",
"Average: 10-15 years",
"Long: 12-20 years",
"Varies by size: Larger breeds typically have shorter lifespans"
]
},
"Temperament": {
"title": "Temperament Guide",
"items": [
"Describes the dog's natural behavior and personality",
"Important for matching with owner's lifestyle",
"Can be influenced by training and socialization"
]
}
}
tooltip = tooltip_contents.get(key, {"title": key, "items": []})
tooltip_content = "<br>".join([f"• {item}" for item in tooltip["items"]])
return f'''
<span class="tooltip">
<strong>{key}:</strong>
<span class="tooltip-icon">ⓘ</span>
<span class="tooltip-text">
<strong>{tooltip["title"]}:</strong><br>
{tooltip_content}
</span>
</span> {value}
'''
def format_single_dog_result(breed: str, description: Dict[str, Any], color: str = "#34C759") -> str:
"""Format single dog detection result into HTML."""
return f'''
<div class="dog-info-card" style="border-left: 8px solid {color};">
<div class="dog-info-header" style="background-color: {color}10;">
<span class="dog-label" style="color: {color};">
<span class="icon">🐾</span> {breed}
</span>
</div>
<div class="breed-info">
<h2 class="section-title">
<span class="icon">📋</span> BASIC INFORMATION
</h2>
<div class="info-section">
<div class="info-item">
<span class="tooltip tooltip-left">
<span class="icon">📏</span>
<span class="label">Size:</span>
<span class="tooltip-icon">ⓘ</span>
<span class="tooltip-text">
<strong>Size Categories:</strong><br>
• Small: Under 20 pounds<br>
• Medium: 20-60 pounds<br>
• Large: Over 60 pounds<br>
• Giant: Over 100 pounds<br>
• Varies: Depends on variety
</span>
</span>
<span class="value">{description['Size']}</span>
</div>
<div class="info-item">
<span class="tooltip">
<span class="icon">⏳</span>
<span class="label">Lifespan:</span>
<span class="tooltip-icon">ⓘ</span>
<span class="tooltip-text">
<strong>Average Lifespan:</strong><br>
• Short: 6-8 years<br>
• Average: 10-15 years<br>
• Long: 12-20 years<br>
• Varies by size: Larger breeds typically have shorter lifespans
</span>
</span>
<span class="value">{description['Lifespan']}</span>
</div>
</div>
<h2 class="section-title">
<span class="icon">🐕</span> TEMPERAMENT & PERSONALITY
</h2>
<div class="temperament-section">
<span class="tooltip">
<span class="value">{description['Temperament']}</span>
<span class="tooltip-icon">ⓘ</span>
<span class="tooltip-text">
<strong>Temperament Guide:</strong><br>
• Describes the dog's natural behavior and personality<br>
• Important for matching with owner's lifestyle<br>
• Can be influenced by training and socialization
</span>
</span>
</div>
<h2 class="section-title">
<span class="icon">💪</span> CARE REQUIREMENTS
</h2>
<div class="care-section">
<div class="info-item">
<span class="tooltip tooltip-left">
<span class="icon">🏃</span>
<span class="label">Exercise:</span>
<span class="tooltip-icon">ⓘ</span>
<span class="tooltip-text">
<strong>Exercise Needs:</strong><br>
• Low: Short walks and play sessions<br>
• Moderate: 1-2 hours of daily activity<br>
• High: Extensive exercise (2+ hours/day)<br>
• Very High: Constant activity and mental stimulation needed
</span>
</span>
<span class="value">{description['Exercise Needs']}</span>
</div>
<div class="info-item">
<span class="tooltip">
<span class="icon">✂️</span>
<span class="label">Grooming:</span>
<span class="tooltip-icon">ⓘ</span>
<span class="tooltip-text">
<strong>Grooming Requirements:</strong><br>
• Low: Basic brushing, occasional baths<br>
• Moderate: Weekly brushing, occasional grooming<br>
• High: Daily brushing, frequent professional grooming needed<br>
• Professional care recommended for all levels
</span>
</span>
<span class="value">{description['Grooming Needs']}</span>
</div>
<div class="info-item">
<span class="tooltip">
<span class="icon">⭐</span>
<span class="label">Care Level:</span>
<span class="tooltip-icon">ⓘ</span>
<span class="tooltip-text">
<strong>Care Level Explained:</strong><br>
• Low: Basic care and attention needed<br>
• Moderate: Regular care and routine needed<br>
• High: Significant time and attention needed<br>
• Very High: Extensive care, training and attention required
</span>
</span>
<span class="value">{description['Care Level']}</span>
</div>
</div>
<h2 class="section-title">
<span class="icon">👨👩👧👦</span> FAMILY COMPATIBILITY
</h2>
<div class="family-section">
<div class="info-item">
<span class="tooltip">
<span class="icon"></span>
<span class="label">Good with Children:</span>
<span class="tooltip-icon">ⓘ</span>
<span class="tooltip-text">
<strong>Child Compatibility:</strong><br>
• Yes: Excellent with kids, patient and gentle<br>
• Moderate: Good with older children<br>
• No: Better suited for adult households
</span>
</span>
<span class="value">{description['Good with Children']}</span>
</div>
</div>
<h2 class="section-title">
<span class="icon">📝</span>
<span class="tooltip">
DESCRIPTION
<span class="tooltip-icon">ⓘ</span>
<span class="tooltip-text">
<strong>About This Description:</strong><br>
• Comprehensive breed overview<br>
• Personality and characteristics<br>
• Historical background<br>
• Typical behaviors and traits
</span>
</span>
</h2>
<div class="description-section">
<p>{description.get('Description', '')}</p>
</div>
<div class="action-section">
<a href="{get_akc_breeds_link(breed)}" target="_blank" class="akc-button">
<span class="icon">🌐</span>
Learn more about {breed} on AKC website
</a>
</div>
</div>
</div>
'''
def format_multiple_breeds_result(
topk_breeds: List[str],
relative_probs: List[str],
color: str,
index: int,
get_dog_description: Callable
) -> str:
"""Format multiple breed predictions into HTML with complete information."""
result = f'''
<div class="dog-info-card" style="border-left: 8px solid {color};">
<div class="dog-info-header" style="background-color: {color}10;">
<span class="dog-label" style="color: {color};">Dog {index+1}</span>
</div>
<div class="breed-info">
<div class="model-uncertainty-note">
<span class="icon">ℹ️</span>
Note: The model is showing some uncertainty in its predictions.
Here are the most likely breeds based on the available visual features.
</div>
<div class="breeds-list">
'''
for j, (breed, prob) in enumerate(zip(topk_breeds, relative_probs)):
description = get_dog_description(breed)
result += f'''
<div class="breed-option uncertainty-mode">
<div class="breed-header" style="background-color: {color}10;">
<span class="option-number">Option {j+1}</span>
<span class="breed-name">{breed}</span>
<span class="confidence-badge" style="background-color: {color}20; color: {color};">
Confidence: {prob}
</span>
</div>
<div class="breed-content">
<div class="breed-info">
<!-- BASIC INFORMATION -->
<h2 class="section-title">
<span class="icon">📋</span> BASIC INFORMATION
</h2>
<div class="info-section">
<div class="info-item">
<span class="tooltip tooltip-left">
<span class="icon">📏</span>
<span class="label">Size:</span>
<span class="tooltip-icon">ⓘ</span>
<span class="tooltip-text">
<strong>Size Categories:</strong><br>
• Small: Under 20 pounds<br>
• Medium: 20-60 pounds<br>
• Large: Over 60 pounds<br>
• Giant: Over 100 pounds<br>
• Varies: Depends on variety
</span>
</span>
<span class="value">{description['Size']}</span>
</div>
<div class="info-item">
<span class="tooltip">
<span class="icon">⏳</span>
<span class="label">Lifespan:</span>
<span class="tooltip-icon">ⓘ</span>
<span class="tooltip-text">
<strong>Average Lifespan:</strong><br>
• Short: 6-8 years<br>
• Average: 10-15 years<br>
• Long: 12-20 years<br>
• Varies by size: Larger breeds typically have shorter lifespans
</span>
</span>
<span class="value">{description['Lifespan']}</span>
</div>
</div>
<!-- TEMPERAMENT & PERSONALITY -->
<h2 class="section-title">
<span class="icon">🐕</span> TEMPERAMENT & PERSONALITY
</h2>
<div class="temperament-section">
<span class="tooltip">
<span class="value">{description['Temperament']}</span>
<span class="tooltip-icon">ⓘ</span>
<span class="tooltip-text">
<strong>Temperament Guide:</strong><br>
• Describes the dog's natural behavior and personality<br>
• Important for matching with owner's lifestyle<br>
• Can be influenced by training and socialization
</span>
</span>
</div>
<!-- CARE REQUIREMENTS -->
<h2 class="section-title">
<span class="icon">💪</span> CARE REQUIREMENTS
</h2>
<div class="care-section">
<div class="info-item">
<span class="tooltip tooltip-left">
<span class="icon">🏃</span>
<span class="label">Exercise:</span>
<span class="tooltip-icon">ⓘ</span>
<span class="tooltip-text">
<strong>Exercise Needs:</strong><br>
• Low: Short walks and play sessions<br>
• Moderate: 1-2 hours of daily activity<br>
• High: Extensive exercise (2+ hours/day)<br>
• Very High: Constant activity and mental stimulation needed
</span>
</span>
<span class="value">{description['Exercise Needs']}</span>
</div>
<div class="info-item">
<span class="tooltip">
<span class="icon">✂️</span>
<span class="label">Grooming:</span>
<span class="tooltip-icon">ⓘ</span>
<span class="tooltip-text">
<strong>Grooming Requirements:</strong><br>
• Low: Basic brushing, occasional baths<br>
• Moderate: Weekly brushing, occasional grooming<br>
• High: Daily brushing, frequent professional grooming needed<br>
• Professional care recommended for all levels
</span>
</span>
<span class="value">{description['Grooming Needs']}</span>
</div>
<div class="info-item">
<span class="tooltip">
<span class="icon">⭐</span>
<span class="label">Care Level:</span>
<span class="tooltip-icon">ⓘ</span>
<span class="tooltip-text">
<strong>Care Level Explained:</strong><br>
• Low: Basic care and attention needed<br>
• Moderate: Regular care and routine needed<br>
• High: Significant time and attention needed<br>
• Very High: Extensive care, training and attention required
</span>
</span>
<span class="value">{description['Care Level']}</span>
</div>
</div>
<!-- FAMILY COMPATIBILITY -->
<h2 class="section-title">
<span class="icon">👨👩👧👦</span> FAMILY COMPATIBILITY
</h2>
<div class="family-section">
<div class="info-item">
<span class="tooltip">
<span class="icon"></span>
<span class="label">Good with Children:</span>
<span class="tooltip-icon">ⓘ</span>
<span class="tooltip-text">
<strong>Child Compatibility:</strong><br>
• Yes: Excellent with kids, patient and gentle<br>
• Moderate: Good with older children<br>
• No: Better suited for adult households
</span>
</span>
<span class="value">{description['Good with Children']}</span>
</div>
</div>
<!-- DESCRIPTION -->
<h2 class="section-title">
<span class="icon">📝</span>
<span class="tooltip">
DESCRIPTION
<span class="tooltip-icon">ⓘ</span>
<span class="tooltip-text">
<strong>About This Description:</strong><br>
• Comprehensive breed overview<br>
• Personality and characteristics<br>
• Historical background<br>
• Typical behaviors and traits
</span>
</span>
</h2>
<div class="description-section">
<p>{description.get('Description', '')}</p>
</div>
<!-- ACTION SECTION -->
<div class="action-section">
<a href="{get_akc_breeds_link(breed)}" target="_blank" class="akc-button">
<span class="icon">🌐</span>
Learn more about {breed} on AKC website
</a>
</div>
</div>
</div>
</div>
'''
result += '</div></div></div>'
return result
def format_multi_dog_container(dogs_info: str) -> str:
"""Wrap multiple dog detection results in a container."""
return f"""
<div class="dog-info-card">
{dogs_info}
</div>
"""
def format_breed_details_html(description: Dict[str, Any], breed: str) -> str:
"""Format breed details for the show_details_html function."""
return f"""
<div class="dog-info">
<h2>{breed}</h2>
<div class="breed-details">
{format_description_html(description, breed)}
<div class="action-section">
<a href="{get_akc_breeds_link(breed)}" target="_blank" class="akc-button">
<span class="icon">🌐</span>
Learn more about {breed} on AKC website
</a>
</div>
</div>
</div>
"""
def format_comparison_result(breed1: str, breed2: str, comparison_data: Dict) -> str:
"""Format breed comparison results into HTML."""
return f"""
<div class="comparison-container">
<div class="comparison-header">
<h3>Comparison: {breed1} vs {breed2}</h3>
</div>
<div class="comparison-content">
<div class="breed-column">
<h4>{breed1}</h4>
{format_comparison_details(comparison_data[breed1])}
</div>
<div class="breed-column">
<h4>{breed2}</h4>
{format_comparison_details(comparison_data[breed2])}
</div>
</div>
</div>
"""
def format_comparison_details(breed_data: Dict) -> str:
"""Format individual breed details for comparison."""
original_data = breed_data.get('Original_Data', {})
return f"""
<div class="comparison-details">
<p><strong>Size:</strong> {original_data.get('Size', 'N/A')}</p>
<p><strong>Exercise Needs:</strong> {original_data.get('Exercise Needs', 'N/A')}</p>
<p><strong>Care Level:</strong> {original_data.get('Care Level', 'N/A')}</p>
<p><strong>Grooming Needs:</strong> {original_data.get('Grooming Needs', 'N/A')}</p>
<p><strong>Good with Children:</strong> {original_data.get('Good with Children', 'N/A')}</p>
<p><strong>Temperament:</strong> {original_data.get('Temperament', 'N/A')}</p>
</div>
"""
def format_header_html() -> str:
"""Format the application header HTML."""
return """
<header style='text-align: center; padding: 20px; margin-bottom: 20px;'>
<h1 style='font-size: 2.5em; margin-bottom: 10px; color: #2D3748;'>
🐾 PawMatch AI
</h1>
<h2 style='font-size: 1.2em; font-weight: normal; color: #4A5568; margin-top: 5px;'>
Your Smart Dog Breed Guide
</h2>
<div style='width: 50px; height: 3px; background: linear-gradient(90deg, #4299e1, #48bb78); margin: 15px auto;'></div>
<p style='color: #718096; font-size: 0.9em;'>
Powered by AI • Breed Recognition • Smart Matching • Companion Guide
</p>
</header>
"""
|