islasher commited on
Commit
3b3d778
·
verified ·
1 Parent(s): 718ff19

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -4
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,