chore: narrow project title to dermatology & wound care
Browse filesAvoid misleading "Multimodal Medical Imaging AI Agent" — the assistant
is scoped to skin conditions and wounds, not general medical imaging.
README.md
CHANGED
|
@@ -1,5 +1,5 @@
|
|
| 1 |
---
|
| 2 |
-
title: MediVision —
|
| 3 |
emoji: 🩺
|
| 4 |
colorFrom: red
|
| 5 |
colorTo: gray
|
|
@@ -10,7 +10,7 @@ pinned: true
|
|
| 10 |
license: mit
|
| 11 |
---
|
| 12 |
|
| 13 |
-
# MediVision —
|
| 14 |
|
| 15 |
> **AMD Developer Hackathon 2026 · Track 3: Vision & Multimodal AI**
|
| 16 |
|
|
@@ -18,7 +18,7 @@ license: mit
|
|
| 18 |
[](LICENSE)
|
| 19 |
[](https://www.amd.com/en/products/accelerators/instinct/mi300.html)
|
| 20 |
|
| 21 |
-
MediVision is a **multilingual**
|
| 22 |
|
| 23 |
---
|
| 24 |
|
|
@@ -51,7 +51,7 @@ on the AMD GPU server.
|
|
| 51 |
|
| 52 |
## Features
|
| 53 |
|
| 54 |
-
- **Multimodal Analysis** — Combines skin image + freeform symptom text for richer diagnosis suggestions.
|
| 55 |
- **Multilingual** — Full support for 6 languages: English, Tiếng Việt, 中文 (Chinese), Español, Français, and 日本語 (Japanese). All output — diagnosis, severity, recommendations, and disclaimer — is rendered natively in the selected language.
|
| 56 |
- **Structured Output** — Every analysis returns:
|
| 57 |
- Diagnosis suggestion
|
|
|
|
| 1 |
---
|
| 2 |
+
title: MediVision — Dermatology & Wound Care AI Assistant
|
| 3 |
emoji: 🩺
|
| 4 |
colorFrom: red
|
| 5 |
colorTo: gray
|
|
|
|
| 10 |
license: mit
|
| 11 |
---
|
| 12 |
|
| 13 |
+
# MediVision — Dermatology & Wound Care AI Assistant
|
| 14 |
|
| 15 |
> **AMD Developer Hackathon 2026 · Track 3: Vision & Multimodal AI**
|
| 16 |
|
|
|
|
| 18 |
[](LICENSE)
|
| 19 |
[](https://www.amd.com/en/products/accelerators/instinct/mi300.html)
|
| 20 |
|
| 21 |
+
MediVision is a **multilingual** AI assistant specialized in dermatology and wound care — it analyzes skin condition images combined with patient symptom descriptions. It supports **English, Tiếng Việt, 中文, Español, Français, and 日本語** — every output (diagnosis, severity, actions, disclaimer) is delivered natively in the selected language. Inference is served by a **vLLM server running on AMD Developer Cloud** (AMD Instinct™ MI300X + ROCm), and the lightweight Gradio frontend on Hugging Face Spaces simply calls that API — no model weights are loaded in the Space itself.
|
| 22 |
|
| 23 |
---
|
| 24 |
|
|
|
|
| 51 |
|
| 52 |
## Features
|
| 53 |
|
| 54 |
+
- **Multimodal Analysis** — Combines skin/wound image + freeform symptom text for richer dermatology diagnosis suggestions.
|
| 55 |
- **Multilingual** — Full support for 6 languages: English, Tiếng Việt, 中文 (Chinese), Español, Français, and 日本語 (Japanese). All output — diagnosis, severity, recommendations, and disclaimer — is rendered natively in the selected language.
|
| 56 |
- **Structured Output** — Every analysis returns:
|
| 57 |
- Diagnosis suggestion
|
app.py
CHANGED
|
@@ -834,7 +834,7 @@ HEADER_HTML = """
|
|
| 834 |
<span style='color:#ED1C24;'>Medi</span><span style='color:#f9fafb;'>Vision</span>
|
| 835 |
</div>
|
| 836 |
<div style='color:#9ca3af; font-size:0.9rem; margin-top:4px;'>
|
| 837 |
-
Multilingual
|
| 838 |
</div>
|
| 839 |
<div style='margin-top:10px; display:inline-flex; gap:8px; flex-wrap:wrap; justify-content:center;'>
|
| 840 |
<span style='background:#1f2937; color:#ED1C24; font-size:0.72rem; font-weight:700;
|
|
@@ -886,7 +886,7 @@ FOOTER_HTML = """
|
|
| 886 |
</script>
|
| 887 |
"""
|
| 888 |
|
| 889 |
-
with gr.Blocks(css=CSS, theme=gr.themes.Base(), title="MediVision —
|
| 890 |
|
| 891 |
gr.HTML(HEADER_HTML)
|
| 892 |
|
|
|
|
| 834 |
<span style='color:#ED1C24;'>Medi</span><span style='color:#f9fafb;'>Vision</span>
|
| 835 |
</div>
|
| 836 |
<div style='color:#9ca3af; font-size:0.9rem; margin-top:4px;'>
|
| 837 |
+
Multilingual Dermatology & Wound Care AI Assistant
|
| 838 |
</div>
|
| 839 |
<div style='margin-top:10px; display:inline-flex; gap:8px; flex-wrap:wrap; justify-content:center;'>
|
| 840 |
<span style='background:#1f2937; color:#ED1C24; font-size:0.72rem; font-weight:700;
|
|
|
|
| 886 |
</script>
|
| 887 |
"""
|
| 888 |
|
| 889 |
+
with gr.Blocks(css=CSS, theme=gr.themes.Base(), title="MediVision — Dermatology & Wound Care AI") as demo:
|
| 890 |
|
| 891 |
gr.HTML(HEADER_HTML)
|
| 892 |
|