Commit
·
54028a6
1
Parent(s):
bd86ed9
Remove depth prediction demo and update requirements.txt
Browse files- app.py +0 -4
- requirements.txt +2 -2
app.py
CHANGED
@@ -57,10 +57,6 @@ def predict_depth(model, image):
|
|
57 |
with gr.Blocks(css=css) as demo:
|
58 |
gr.Markdown(title)
|
59 |
gr.Markdown(description)
|
60 |
-
gr.Markdown("### Depth Prediction demo")
|
61 |
-
gr.Markdown(
|
62 |
-
"You can slide the output to compare the depth prediction with input image")
|
63 |
-
|
64 |
with gr.Row():
|
65 |
input_image = gr.Image(label="Input Image",
|
66 |
type='numpy', elem_id='img-display-input')
|
|
|
57 |
with gr.Blocks(css=css) as demo:
|
58 |
gr.Markdown(title)
|
59 |
gr.Markdown(description)
|
|
|
|
|
|
|
|
|
60 |
with gr.Row():
|
61 |
input_image = gr.Image(label="Input Image",
|
62 |
type='numpy', elem_id='img-display-input')
|
requirements.txt
CHANGED
@@ -1,6 +1,6 @@
|
|
1 |
-
pytorch
|
2 |
torchvision
|
3 |
-
cudatoolkit
|
4 |
matplotlib
|
5 |
tqdm
|
6 |
tensorboardX
|
|
|
1 |
+
pytorch
|
2 |
torchvision
|
3 |
+
cudatoolkit
|
4 |
matplotlib
|
5 |
tqdm
|
6 |
tensorboardX
|