Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -129,14 +129,14 @@ generator, kp_detector = load_checkpoints(
|
|
129 |
)
|
130 |
|
131 |
iface = gr.Interface(
|
132 |
-
inference,
|
133 |
[
|
134 |
gr.Video(),#type="mp4"
|
135 |
gr.Image(type="filepath"),
|
136 |
-
],
|
137 |
-
outputs=gr.Video(label="Output Video")
|
138 |
examples=examples,
|
139 |
-
enable_queue=True,
|
140 |
title=title,
|
141 |
article=article,
|
142 |
description=description,
|
|
|
129 |
)
|
130 |
|
131 |
iface = gr.Interface(
|
132 |
+
inference, #funcion para la interfaz
|
133 |
[
|
134 |
gr.Video(),#type="mp4"
|
135 |
gr.Image(type="filepath"),
|
136 |
+
], #inputs
|
137 |
+
outputs=gr.Video(label="Output Video"),#outputs
|
138 |
examples=examples,
|
139 |
+
#enable_queue=True, #no aparece
|
140 |
title=title,
|
141 |
article=article,
|
142 |
description=description,
|