dikheng commited on
Commit
b0c1eb5
·
1 Parent(s): 87e43a0

chore: narrow project title to dermatology & wound care

Browse files

Avoid misleading "Multimodal Medical Imaging AI Agent" — the assistant
is scoped to skin conditions and wounds, not general medical imaging.

Files changed (2) hide show
  1. README.md +4 -4
  2. app.py +2 -2
README.md CHANGED
@@ -1,5 +1,5 @@
1
  ---
2
- title: MediVision — Multimodal Medical Imaging AI Agent
3
  emoji: 🩺
4
  colorFrom: red
5
  colorTo: gray
@@ -10,7 +10,7 @@ pinned: true
10
  license: mit
11
  ---
12
 
13
- # MediVision — Multimodal Medical Imaging AI Agent
14
 
15
  > **AMD Developer Hackathon 2026 · Track 3: Vision & Multimodal AI**
16
 
@@ -18,7 +18,7 @@ license: mit
18
  [![License: MIT](https://img.shields.io/badge/License-MIT-blue.svg)](LICENSE)
19
  [![Powered by AMD](https://img.shields.io/badge/Powered%20by-AMD%20MI300X%20%2B%20ROCm-ED1C24)](https://www.amd.com/en/products/accelerators/instinct/mi300.html)
20
 
21
- MediVision is a **multilingual** multimodal AI assistant that analyzes skin wound and disease 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,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: MIT](https://img.shields.io/badge/License-MIT-blue.svg)](LICENSE)
19
  [![Powered by AMD](https://img.shields.io/badge/Powered%20by-AMD%20MI300X%20%2B%20ROCm-ED1C24)](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 Multimodal Medical Imaging AI Agent
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 — AMD MI300X") as demo:
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 &amp; 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