Spaces:
Runtime error
Runtime error
Ekins Kuuzie
commited on
Upload 3 files
Browse files- app.py +44 -0
- best.pt +3 -0
- requirements.txt +9 -0
app.py
ADDED
@@ -0,0 +1,44 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
##importing the libraries
|
2 |
+
|
3 |
+
import torch
|
4 |
+
import cv2
|
5 |
+
import os
|
6 |
+
import numpy as np
|
7 |
+
import pandas as pd
|
8 |
+
import gradio as gr
|
9 |
+
from ultralytics import YOLO
|
10 |
+
|
11 |
+
|
12 |
+
# Load your trained model
|
13 |
+
model = YOLO('best.pt')
|
14 |
+
|
15 |
+
### Preprocess the new image
|
16 |
+
|
17 |
+
def predict_image(test_image):
|
18 |
+
# save images
|
19 |
+
results = model.predict(test_image, save=True, conf=0.1, batch=2)
|
20 |
+
return results
|
21 |
+
|
22 |
+
|
23 |
+
|
24 |
+
|
25 |
+
platform = gr.Interface( fn = predict_image,
|
26 |
+
title ="PTCADx: Computer-Aided Detection of Pneumothorax in Chest X-ray Images",
|
27 |
+
inputs = "image",
|
28 |
+
outputs = "label",
|
29 |
+
description="""
|
30 |
+
Introducing a revolutionary computer-aided detection tool designed to enhance the efficiency of clinicians in detecting pneumothorax in chest X-ray images.
|
31 |
+
""",
|
32 |
+
article = """
|
33 |
+
It is crucial to emphasize that while this tool serves as a valuable research aid,
|
34 |
+
it is not intended to replace clinical guidelines,
|
35 |
+
nor should it substitute for the wealth of clinical knowledge
|
36 |
+
and experience possessed by healthcare professionals.
|
37 |
+
The algorithm is meant to complement and support the diagnostic process,
|
38 |
+
providing an additional layer of analysis for consideration in conjunction with the clinician's expertise.
|
39 |
+
Users are encouraged to interpret the algorithm's output in conjunction with their clinical judgment,
|
40 |
+
and the tool should be viewed as a supplementary resource rather than a standalone diagnostic solution.
|
41 |
+
""" )
|
42 |
+
|
43 |
+
|
44 |
+
platform.launch(inline=True,share=True)
|
best.pt
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:3c44493f1f1f8816ea639dc49b703a08dac578206bc0981fc5921f87a72a406f
|
3 |
+
size 136731817
|
requirements.txt
ADDED
@@ -0,0 +1,9 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
ultralytics==8.1.4
|
2 |
+
numpy==1.26.0
|
3 |
+
gradio==4.16.0
|
4 |
+
gradio_client==0.8.1
|
5 |
+
pandas==2.1.0
|
6 |
+
torch==2.1.2
|
7 |
+
torchvision==0.16.2
|
8 |
+
opencv-python==4.8.1.78
|
9 |
+
openpyxl==3.1.2
|