Spaces:
Runtime error
Runtime error
Commit
·
3fbdaa2
1
Parent(s):
f07559c
Fix import typo in app.py and update requirements.txt
Browse files- app.py +1 -1
- iebins/{utils → util}/transfrom.py +0 -0
- requirements.txt +1 -1
app.py
CHANGED
|
@@ -11,7 +11,7 @@ import tempfile
|
|
| 11 |
from gradio_imageslider import ImageSlider
|
| 12 |
|
| 13 |
from iebins.networks.NewCRFDepth import NewCRFDepth
|
| 14 |
-
from iebins.
|
| 15 |
|
| 16 |
css = """
|
| 17 |
#img-display-container {
|
|
|
|
| 11 |
from gradio_imageslider import ImageSlider
|
| 12 |
|
| 13 |
from iebins.networks.NewCRFDepth import NewCRFDepth
|
| 14 |
+
from iebins.util.transfrom import Resize, NormalizeImage, PrepareForNet
|
| 15 |
|
| 16 |
css = """
|
| 17 |
#img-display-container {
|
iebins/{utils → util}/transfrom.py
RENAMED
|
File without changes
|
requirements.txt
CHANGED
|
@@ -5,4 +5,4 @@ opencv-python
|
|
| 5 |
numpy
|
| 6 |
spaces
|
| 7 |
timm
|
| 8 |
-
mmcv
|
|
|
|
| 5 |
numpy
|
| 6 |
spaces
|
| 7 |
timm
|
| 8 |
+
mmcv
|