Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
Y
yolov5
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
图表
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
Administrator
yolov5
Commits
23686034
提交
23686034
authored
6月 17, 2020
作者:
Lornatang
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
fix refrence bug
In torch==1.5, the import of the API has changed. Although it does not interrupt the operation of the program, it seems to me to be an implicit error and may throw an exception in later versions.
上级
a557b7d9
隐藏空白字符变更
内嵌
并排
正在显示
2 个修改的文件
包含
4 行增加
和
1 行删除
+4
-1
detect.py
detect.py
+3
-1
train.py
train.py
+1
-0
没有找到文件。
detect.py
浏览文件 @
23686034
import
argparse
import
torch.backends.cudnn
as
cudnn
from
utils.datasets
import
*
from
utils.utils
import
*
...
...
@@ -36,7 +38,7 @@ def detect(save_img=False):
vid_path
,
vid_writer
=
None
,
None
if
webcam
:
view_img
=
True
torch
.
backends
.
cudnn
.
benchmark
=
True
# set True to speed up constant image size inference
cudnn
.
benchmark
=
True
# set True to speed up constant image size inference
dataset
=
LoadStreams
(
source
,
img_size
=
imgsz
)
else
:
save_img
=
True
...
...
train.py
浏览文件 @
23686034
...
...
@@ -4,6 +4,7 @@ import torch.distributed as dist
import
torch.nn.functional
as
F
import
torch.optim
as
optim
import
torch.optim.lr_scheduler
as
lr_scheduler
import
torch.utils.data
from
torch.utils.tensorboard
import
SummaryWriter
import
test
# import test.py to get mAP after each epoch
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论