Tried to fix Docker usage for hf spaces
Browse files- .dockerignore +16 -0
- demo/Dockerfile → Dockerfile +0 -0
- README.md +15 -0
- demo/.dockerignore +0 -1
- pre-requirements.txt +1 -2
.dockerignore
ADDED
@@ -0,0 +1,16 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
venv/
|
2 |
+
build/
|
3 |
+
dist/
|
4 |
+
livermask.egg-info/
|
5 |
+
*.DS_Store
|
6 |
+
*.h5
|
7 |
+
*.npz
|
8 |
+
*.nii
|
9 |
+
*__pycache__/
|
10 |
+
.idea/
|
11 |
+
*.glb
|
12 |
+
gradio_cached_examples/
|
13 |
+
flagged/
|
14 |
+
files/
|
15 |
+
*.csv
|
16 |
+
*.obj
|
demo/Dockerfile → Dockerfile
RENAMED
File without changes
|
README.md
CHANGED
@@ -1,3 +1,18 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
<div align="center">
|
2 |
<h1 align="center">livermask</h1>
|
3 |
<h3 align="center">Automatic liver parenchyma and vessel segmentation in CT using deep learning</h3>
|
|
|
1 |
+
<!---
|
2 |
+
---
|
3 |
+
title: 'livermask: Automatic Liver Parenchyma and vessel segmentation in CT'
|
4 |
+
colorFrom: indigo
|
5 |
+
colorTo: indigo
|
6 |
+
sdk: docker
|
7 |
+
app_port: 7860
|
8 |
+
emoji: 🚀
|
9 |
+
pinned: false
|
10 |
+
license: mit
|
11 |
+
app_file: demo/app.py
|
12 |
+
---
|
13 |
+
-->
|
14 |
+
|
15 |
+
|
16 |
<div align="center">
|
17 |
<h1 align="center">livermask</h1>
|
18 |
<h3 align="center">Automatic liver parenchyma and vessel segmentation in CT using deep learning</h3>
|
demo/.dockerignore
DELETED
@@ -1 +0,0 @@
|
|
1 |
-
flagged/
|
|
|
|
pre-requirements.txt
CHANGED
@@ -1,3 +1,2 @@
|
|
1 |
livermask @ git+https://github.com/andreped/livermask.git
|
2 |
-
gradio==3.
|
3 |
-
fastapi==0.74.1
|
|
|
1 |
livermask @ git+https://github.com/andreped/livermask.git
|
2 |
+
gradio==3.32.0
|
|