Merge pull request #27 from andreped/improved-demo-ui
Browse files- demo/app.py +2 -2
demo/app.py
CHANGED
|
@@ -4,8 +4,8 @@ from src.gui import WebUI
|
|
| 4 |
def main():
|
| 5 |
print("Launching demo...")
|
| 6 |
|
| 7 |
-
cwd = "/Users/andreped/workspace/livermask/" # local testing -> macOS
|
| 8 |
-
|
| 9 |
|
| 10 |
model_name = "model.h5" # assumed to lie in `cwd` directory
|
| 11 |
class_name = "parenchyma"
|
|
|
|
| 4 |
def main():
|
| 5 |
print("Launching demo...")
|
| 6 |
|
| 7 |
+
# cwd = "/Users/andreped/workspace/livermask/" # local testing -> macOS
|
| 8 |
+
cwd = "/home/user/app/" # production -> docker
|
| 9 |
|
| 10 |
model_name = "model.h5" # assumed to lie in `cwd` directory
|
| 11 |
class_name = "parenchyma"
|