Spaces:
Runtime error
Runtime error
envs
Browse files- app.py +2 -2
- requirements.txt +1 -1
app.py
CHANGED
|
@@ -548,8 +548,8 @@ with block as demo:
|
|
| 548 |
width=384,
|
| 549 |
model_length=16
|
| 550 |
)
|
| 551 |
-
first_frame_path = gr.State()
|
| 552 |
-
tracking_points = gr.State([])
|
| 553 |
|
| 554 |
with gr.Row():
|
| 555 |
with gr.Column(scale=1):
|
|
|
|
| 548 |
width=384,
|
| 549 |
model_length=16
|
| 550 |
)
|
| 551 |
+
first_frame_path = gr.State(value=None,label="image")
|
| 552 |
+
tracking_points = gr.State([], label="points")
|
| 553 |
|
| 554 |
with gr.Row():
|
| 555 |
with gr.Column(scale=1):
|
requirements.txt
CHANGED
|
@@ -2,7 +2,7 @@ torch
|
|
| 2 |
torchvision
|
| 3 |
torchaudio
|
| 4 |
transformers==4.32.1
|
| 5 |
-
gradio==3.50.
|
| 6 |
ftfy
|
| 7 |
tensorboard
|
| 8 |
datasets
|
|
|
|
| 2 |
torchvision
|
| 3 |
torchaudio
|
| 4 |
transformers==4.32.1
|
| 5 |
+
gradio==3.50.0
|
| 6 |
ftfy
|
| 7 |
tensorboard
|
| 8 |
datasets
|