概述
国庆装了5天 YOLO终于能跑了。过程没记录。
现在还存在GPU跑的时候图片和视频没法识别的问题,摄像头显示是可以识别的。
Model Summary: 476 layers, 87730285 parameters, 0 gradients, 218.8 GFLOPS
Traceback (most recent call last):
File "C:Usersdiyer_zhouPycharmProjectsyolov5-5.0detect.py", line 179, in <module>
detect()
File "C:Usersdiyer_zhouPycharmProjectsyolov5-5.0detect.py", line 51, in detect
dataset = LoadStreams(source, img_size=imgsz, stride=stride)
File "C:Usersdiyer_zhouPycharmProjectsyolov5-5.0utilsdatasets.py", line 279, in __init__
if 'youtube.com/' in url or 'youtu.be/' in url: # if source is YouTube video
TypeError: argument of type 'int' is not iterable
1/1: 0...
Process finished with exit code 1
解决:
增加一个 if url:
if url:
if 'youtube.com/' in url or 'youtu.be/' in url:
# if source is YouTube video
check_requirements(('pafy', 'youtube_dl'))
import pafy
url = pafy.new(url).getbest(preftype="mp4").url
最后
以上就是酷炫毛豆为你收集整理的yolo v5.50 坑的全部内容,希望文章能够帮你解决yolo v5.50 坑所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
发表评论 取消回复