Spaces:
Paused
Paused
Abid
commited on
Commit
•
3c3c4b3
1
Parent(s):
191800f
center subtitle
Browse files- Dockerfile +1 -1
- Procfile +1 -1
- app/app_savta.py +1 -1
Dockerfile
CHANGED
@@ -1,4 +1,4 @@
|
|
1 |
-
FROM python:3.9
|
2 |
|
3 |
EXPOSE $PORT
|
4 |
|
|
|
1 |
+
FROM python:3.9.10
|
2 |
|
3 |
EXPOSE $PORT
|
4 |
|
Procfile
CHANGED
@@ -1 +1 @@
|
|
1 |
-
web: source setup.sh && python app/app_savta.py
|
|
|
1 |
+
web: source setup.sh && python /app/app_savta.py
|
app/app_savta.py
CHANGED
@@ -3,7 +3,7 @@ import numpy as np
|
|
3 |
import gradio as gr
|
4 |
|
5 |
title = "SavtaDepth WebApp"
|
6 |
-
description = "Monocular Depth Estimation - Turn 2d photos into 3d photos"
|
7 |
article = "<p style='text-align: center'><a href='https://dagshub.com/OperationSavta/SavtaDepth' target='_blank'>SavtaDepth Project from OperationSavta</a></p><p style='text-align: center'><a href='https://colab.research.google.com/drive/1XU4DgQ217_hUMU1dllppeQNw3pTRlHy1?usp=sharing' target='_blank'>Google Colab Demo</a></p></center></p>"
|
8 |
|
9 |
examples = [
|
|
|
3 |
import gradio as gr
|
4 |
|
5 |
title = "SavtaDepth WebApp"
|
6 |
+
description = "<center>Monocular Depth Estimation - Turn 2d photos into 3d photos</center>"
|
7 |
article = "<p style='text-align: center'><a href='https://dagshub.com/OperationSavta/SavtaDepth' target='_blank'>SavtaDepth Project from OperationSavta</a></p><p style='text-align: center'><a href='https://colab.research.google.com/drive/1XU4DgQ217_hUMU1dllppeQNw3pTRlHy1?usp=sharing' target='_blank'>Google Colab Demo</a></p></center></p>"
|
8 |
|
9 |
examples = [
|