Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -101,13 +101,20 @@ def sequence_prediction(path):
|
|
101 |
return preds
|
102 |
|
103 |
|
104 |
-
article = article = "<
|
105 |
app = gr.Interface(
|
106 |
sequence_prediction,
|
107 |
inputs=[gr.inputs.Video(label="Video", type="mp4")],
|
108 |
outputs=[gr.outputs.Label(label="Prediction", type="confidences")],
|
109 |
-
title="
|
110 |
-
description="
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
111 |
article=article,
|
112 |
examples=samples
|
113 |
).launch(enable_queue=True, cache_examples=True)
|
|
|
101 |
return preds
|
102 |
|
103 |
|
104 |
+
article = article = "<p style='text-align: center'><a href='http://allaideas.com/index.html' target='_blank'>Video Segmentación: Link para mas info</a> </p>"
|
105 |
app = gr.Interface(
|
106 |
sequence_prediction,
|
107 |
inputs=[gr.inputs.Video(label="Video", type="mp4")],
|
108 |
outputs=[gr.outputs.Label(label="Prediction", type="confidences")],
|
109 |
+
title=" Video Classification ",
|
110 |
+
description="""
|
111 |
+
<p>
|
112 |
+
<center>
|
113 |
+
Demo de clasificador de video, el objetivo es reconocer un segemento y recortarlo .
|
114 |
+
<img src="https://raw.githubusercontent.com/All-Aideas/sea_apirest/main/logo.png" alt="logo" width="250"/>
|
115 |
+
</center>
|
116 |
+
</p>
|
117 |
+
""",
|
118 |
article=article,
|
119 |
examples=samples
|
120 |
).launch(enable_queue=True, cache_examples=True)
|