Spaces:
Running
Running
Update README.md
Browse files
README.md
CHANGED
@@ -6,7 +6,34 @@ colorTo: gray
|
|
6 |
sdk: gradio
|
7 |
sdk_version: 5.23.3
|
8 |
app_file: app.py
|
9 |
-
pinned:
|
|
|
10 |
---
|
11 |
|
12 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
6 |
sdk: gradio
|
7 |
sdk_version: 5.23.3
|
8 |
app_file: app.py
|
9 |
+
pinned: true
|
10 |
+
license: apache-2.0
|
11 |
---
|
12 |
|
13 |
+
|
14 |
+
# π₯ Medical Summarization Bot
|
15 |
+
|
16 |
+
This is a simple Gradio-based application for **summarizing medical reports and doctor-patient conversations**. It uses:
|
17 |
+
|
18 |
+
- ποΈ [Whisper](https://github.com/openai/whisper) (base) for automatic speech recognition (ASR)
|
19 |
+
- π§ [BART-Large-CNN](https://huggingface.co/facebook/bart-large-cnn) for text summarization
|
20 |
+
|
21 |
+
---
|
22 |
+
|
23 |
+
## π Features
|
24 |
+
|
25 |
+
- Upload or record **audio** of medical conversations β get transcription + summary
|
26 |
+
- Paste **text** from reports or dialogues β get instant summary
|
27 |
+
- Lightweight, open-source models (runs on CPU)
|
28 |
+
|
29 |
+
---
|
30 |
+
|
31 |
+
## π Installation
|
32 |
+
|
33 |
+
### 1. Clone the repository
|
34 |
+
|
35 |
+
```bash
|
36 |
+
git clone https://github.com/yourusername/medical-summarization-bot.git
|
37 |
+
cd medical-summarization-bot
|
38 |
+
|
39 |
+
Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
|