Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -44,9 +44,12 @@ html_content = """
|
|
44 |
<h1>Welcome to My Video Processing App</h1>
|
45 |
<p>The author is a third-year undergraduate student at the School of Intelligent Science and Technology, Nanjing University, Suzhou Campus. </p>
|
46 |
<p>Since this project uses Hugging Face's free CPU, the processing speed is very slow. In the worst case, even a video with a dozen frames can take several minutes to process. Therefore, if possible, it is recommended to deploy on a device with a better GPU.</p>
|
|
|
|
|
47 |
</div>
|
48 |
"""
|
49 |
with demo:
|
50 |
gr.HTML(html_content)
|
51 |
|
52 |
demo.launch()
|
|
|
|
44 |
<h1>Welcome to My Video Processing App</h1>
|
45 |
<p>The author is a third-year undergraduate student at the School of Intelligent Science and Technology, Nanjing University, Suzhou Campus. </p>
|
46 |
<p>Since this project uses Hugging Face's free CPU, the processing speed is very slow. In the worst case, even a video with a dozen frames can take several minutes to process. Therefore, if possible, it is recommended to deploy on a device with a better GPU.</p>
|
47 |
+
<p>Although the YOLOv5 model supports up to 80 classes, my project is primarily focused on autonomous driving. Therefore, objects other than people and cars will be excluded after object detection.</p>
|
48 |
+
<p>If this is your first attempt, ensure that the video includes at least people and cars. Additionally, it's recommended that the video is not too long, ideally within 10 seconds.</p>
|
49 |
</div>
|
50 |
"""
|
51 |
with demo:
|
52 |
gr.HTML(html_content)
|
53 |
|
54 |
demo.launch()
|
55 |
+
|