Spaces:
Runtime error
Runtime error
Update main.py
Browse files
main.py
CHANGED
@@ -43,14 +43,14 @@ inputs = [gr.Video(label='Input Video'),
|
|
43 |
gr.Radio(["pullups", "pushups", "absworkout"], label="Pose Type")]
|
44 |
outputs = gr.Video(label='Output Video')
|
45 |
|
46 |
-
example_list = [['Examples/PULL-UPS.mp4'],['Examples/PUSH-UPS.mp4']]
|
47 |
# Create the Gradio demo
|
48 |
demo = gr.Interface(fn=process,
|
49 |
inputs=inputs,
|
50 |
outputs=outputs,
|
51 |
title=title,
|
52 |
-
description=description
|
53 |
-
examples=example_list
|
54 |
# cache_examples=True
|
55 |
)
|
56 |
|
|
|
43 |
gr.Radio(["pullups", "pushups", "absworkout"], label="Pose Type")]
|
44 |
outputs = gr.Video(label='Output Video')
|
45 |
|
46 |
+
# example_list = [['Examples/PULL-UPS.mp4'],['Examples/PUSH-UPS.mp4']]
|
47 |
# Create the Gradio demo
|
48 |
demo = gr.Interface(fn=process,
|
49 |
inputs=inputs,
|
50 |
outputs=outputs,
|
51 |
title=title,
|
52 |
+
description=description
|
53 |
+
# examples=example_list
|
54 |
# cache_examples=True
|
55 |
)
|
56 |
|