Spaces:
Running
Running
refactor(app): comment out examples section for temporary debugging
Browse filesThe examples section was commented out to isolate potential issues during debugging. This is a temporary change to help identify problems in the video processing pipeline.
app.py
CHANGED
@@ -217,16 +217,16 @@ class FaceBlurApp:
|
|
217 |
outputs=[output_video, status_text]
|
218 |
)
|
219 |
|
220 |
-
gr.Examples(
|
221 |
-
|
222 |
-
|
223 |
-
|
224 |
-
|
225 |
-
|
226 |
-
|
227 |
-
|
228 |
-
|
229 |
-
)
|
230 |
|
231 |
gr.Markdown("--- \n *Hecho con Gradio, YOLOv8 y DeepSORT. Adaptado para Hugging Face Spaces.*")
|
232 |
|
|
|
217 |
outputs=[output_video, status_text]
|
218 |
)
|
219 |
|
220 |
+
# gr.Examples(
|
221 |
+
# examples=[
|
222 |
+
# ["examples/people.mp4", True, 35],
|
223 |
+
# ["examples/street.mp4", True, 51],
|
224 |
+
# ],
|
225 |
+
# inputs=[input_video, blur_people, blur_intensity],
|
226 |
+
# outputs=[output_video, status_text],
|
227 |
+
# fn=self.process_video,
|
228 |
+
# cache_examples=True # Acelera la carga de ejemplos
|
229 |
+
# )
|
230 |
|
231 |
gr.Markdown("--- \n *Hecho con Gradio, YOLOv8 y DeepSORT. Adaptado para Hugging Face Spaces.*")
|
232 |
|