cesar commited on
Commit
949b540
1 Parent(s): 8498824

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +10 -3
app.py CHANGED
@@ -101,13 +101,20 @@ def sequence_prediction(path):
101
  return preds
102
 
103
 
104
- article = article = "<div style='text-align: center;'><a href='https://github.com/ChainYo' target='_blank'>Space by Thomas Chaigneau</a><br><a href='https://keras.io/examples/vision/video_classification/' target='_blank'>Keras example by Sayak Paul</a></div>"
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="Keras Video Classification with CNN-RNN",
110
- description="Video classification demo using CNN-RNN based model.",
 
 
 
 
 
 
 
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)