Update README.md
Browse files
README.md
CHANGED
@@ -1,14 +1,37 @@
|
|
1 |
---
|
2 |
-
title: Radpid
|
3 |
-
emoji:
|
4 |
-
colorFrom:
|
5 |
-
colorTo:
|
6 |
sdk: streamlit
|
7 |
sdk_version: 1.41.1
|
8 |
app_file: app.py
|
9 |
pinned: false
|
10 |
license: apache-2.0
|
11 |
-
|
12 |
---
|
13 |
|
14 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
---
|
2 |
+
title: Radpid Bone Fracture Detection
|
3 |
+
emoji: 🦴
|
4 |
+
colorFrom: blue
|
5 |
+
colorTo: indigo
|
6 |
sdk: streamlit
|
7 |
sdk_version: 1.41.1
|
8 |
app_file: app.py
|
9 |
pinned: false
|
10 |
license: apache-2.0
|
11 |
+
python_version: "3.10"
|
12 |
---
|
13 |
|
14 |
+
# Radpid Bone Fracture Detection
|
15 |
+
|
16 |
+
Web service for detecting and classifying bone fractures in X-ray images.
|
17 |
+
|
18 |
+
## Models
|
19 |
+
- D3STRON/bone-fracture-detr (Object Detection)
|
20 |
+
- Heem2/bone-fracture-detection-using-xray (Classification)
|
21 |
+
- nandodeomkar/autotrain-fracture-detection-using-google-vit-base-patch-16-54382127388 (Classification)
|
22 |
+
|
23 |
+
## API Endpoints
|
24 |
+
`POST /detect`
|
25 |
+
- Upload image for fracture detection
|
26 |
+
- Parameters:
|
27 |
+
- file: Image file (PNG/JPG)
|
28 |
+
- confidence: Threshold (0-1)
|
29 |
+
|
30 |
+
## Usage
|
31 |
+
```bash
|
32 |
+
pip install -r requirements.txt
|
33 |
+
uvicorn app:app --host 0.0.0.0 --port 7860
|
34 |
+
```
|
35 |
+
|
36 |
+
## Live Demo
|
37 |
+
Visit the Space on Hugging Face for interactive demo.
|