Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
|
@@ -305,6 +305,33 @@ def create_portfolio_app():
|
|
| 305 |
</div>
|
| 306 |
""")
|
| 307 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 308 |
# Web Scraping Tab
|
| 309 |
with gr.Tab("🕷️ Web Scraping & Classification"):
|
| 310 |
gr.Markdown("""
|
|
|
|
| 305 |
</div>
|
| 306 |
""")
|
| 307 |
|
| 308 |
+
# Computer Vision Tab
|
| 309 |
+
with gr.Tab("🤖 LLM"):
|
| 310 |
+
gr.Markdown("""
|
| 311 |
+
## LLM Demo
|
| 312 |
+
|
| 313 |
+
Demonstrating various computer vision capabilities including face detection,
|
| 314 |
+
object detection, and image classification. Built with OpenCV, InsightFace,
|
| 315 |
+
and custom trained models.
|
| 316 |
+
|
| 317 |
+
### 🔍 Available Models:
|
| 318 |
+
- **Face Detection**: Locate and identify faces in images
|
| 319 |
+
- **Object Detection**: Identify and classify objects
|
| 320 |
+
- **Image Classification**: Categorize images into predefined classes
|
| 321 |
+
""")
|
| 322 |
+
|
| 323 |
+
# Embedding section
|
| 324 |
+
gr.HTML("""
|
| 325 |
+
<iframe src="https://limitedonly41-cv.hf.space"
|
| 326 |
+
frameborder="0"
|
| 327 |
+
width="100%"
|
| 328 |
+
height="850px">
|
| 329 |
+
</iframe>
|
| 330 |
+
""")
|
| 331 |
+
|
| 332 |
+
|
| 333 |
+
|
| 334 |
+
|
| 335 |
# Web Scraping Tab
|
| 336 |
with gr.Tab("🕷️ Web Scraping & Classification"):
|
| 337 |
gr.Markdown("""
|