Spaces:
Running
Running
titi
commited on
Commit
·
2fc6cab
1
Parent(s):
1321810
renamed github and hugging face accounts
Browse files- README.md +2 -2
- app.py +2 -0
- requirements.txt +1 -1
README.md
CHANGED
@@ -13,7 +13,7 @@ pinned: false
|
|
13 |
A web-based application for automated lung segmentation using deep learning, powered by **Gradio** and **PyTorch**. This tool allows users to upload lung images and obtain segmented outputs efficiently.
|
14 |
|
15 |
<p align="center">
|
16 |
-
<img src="https://raw.githubusercontent.com/
|
17 |
</p>
|
18 |
|
19 |
## Installation
|
@@ -34,4 +34,4 @@ python app.py
|
|
34 |
And go to http://localhost:7860/.
|
35 |
|
36 |
## About Lungs Segmentation
|
37 |
-
If you are interesten in the package used for segmentation please check the following [GitHub repository](https://github.com/
|
|
|
13 |
A web-based application for automated lung segmentation using deep learning, powered by **Gradio** and **PyTorch**. This tool allows users to upload lung images and obtain segmented outputs efficiently.
|
14 |
|
15 |
<p align="center">
|
16 |
+
<img src="https://raw.githubusercontent.com/qchapp/lungs-segmentation-app/refs/heads/master/images/app.png" height="700">
|
17 |
</p>
|
18 |
|
19 |
## Installation
|
|
|
34 |
And go to http://localhost:7860/.
|
35 |
|
36 |
## About Lungs Segmentation
|
37 |
+
If you are interesten in the package used for segmentation please check the following [GitHub repository](https://github.com/qchapp/lungs-segmentation)!
|
app.py
CHANGED
@@ -59,6 +59,8 @@ with gr.Blocks() as demo:
|
|
59 |
|
60 |
reset_btn = gr.Button("Reset")
|
61 |
|
|
|
|
|
62 |
# ---- CALLBACKS ----
|
63 |
|
64 |
# A) Load volume
|
|
|
59 |
|
60 |
reset_btn = gr.Button("Reset")
|
61 |
|
62 |
+
gr.Markdown("#### 📝 This work is based on the Bachelor Thesis of Quentin Chappuis 2024; for more information, consult the [repository](https://github.com/qchapp/lungs-segmentation)!")
|
63 |
+
|
64 |
# ---- CALLBACKS ----
|
65 |
|
66 |
# A) Load volume
|
requirements.txt
CHANGED
@@ -1,4 +1,4 @@
|
|
1 |
-
unet_lungs_segmentation==1.0.
|
2 |
gradio==4.44.1
|
3 |
torch==2.6.0
|
4 |
torchvision==0.21.0
|
|
|
1 |
+
unet_lungs_segmentation==1.0.8
|
2 |
gradio==4.44.1
|
3 |
torch==2.6.0
|
4 |
torchvision==0.21.0
|