Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
Y
yolov5
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
图表
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
Administrator
yolov5
Commits
c5360f6e
Unverified
提交
c5360f6e
authored
9月 09, 2021
作者:
Glenn Jocher
提交者:
GitHub
9月 09, 2021
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Fix `--data from_HUB.zip` (#4732)
@KalenMike
上级
4a025ae9
隐藏空白字符变更
内嵌
并排
正在显示
1 个修改的文件
包含
3 行增加
和
3 行删除
+3
-3
train.py
train.py
+3
-3
没有找到文件。
train.py
浏览文件 @
c5360f6e
...
@@ -36,7 +36,7 @@ from utils.autoanchor import check_anchors
...
@@ -36,7 +36,7 @@ from utils.autoanchor import check_anchors
from
utils.datasets
import
create_dataloader
from
utils.datasets
import
create_dataloader
from
utils.general
import
labels_to_class_weights
,
increment_path
,
labels_to_image_weights
,
init_seeds
,
\
from
utils.general
import
labels_to_class_weights
,
increment_path
,
labels_to_image_weights
,
init_seeds
,
\
strip_optimizer
,
get_latest_run
,
check_dataset
,
check_git_status
,
check_img_size
,
check_requirements
,
\
strip_optimizer
,
get_latest_run
,
check_dataset
,
check_git_status
,
check_img_size
,
check_requirements
,
\
check_yaml
,
check_suffix
,
print_mutation
,
set_logging
,
one_cycle
,
colorstr
,
methods
check_
file
,
check_
yaml
,
check_suffix
,
print_mutation
,
set_logging
,
one_cycle
,
colorstr
,
methods
from
utils.downloads
import
attempt_download
from
utils.downloads
import
attempt_download
from
utils.loss
import
ComputeLoss
from
utils.loss
import
ComputeLoss
from
utils.plots
import
plot_labels
,
plot_evolve
from
utils.plots
import
plot_labels
,
plot_evolve
...
@@ -105,6 +105,7 @@ def train(hyp, # path/to/hyp.yaml or hyp dictionary
...
@@ -105,6 +105,7 @@ def train(hyp, # path/to/hyp.yaml or hyp dictionary
is_coco
=
data
.
endswith
(
'coco.yaml'
)
and
nc
==
80
# COCO dataset
is_coco
=
data
.
endswith
(
'coco.yaml'
)
and
nc
==
80
# COCO dataset
# Model
# Model
check_suffix
(
weights
,
'.pt'
)
# check weights
pretrained
=
weights
.
endswith
(
'.pt'
)
pretrained
=
weights
.
endswith
(
'.pt'
)
if
pretrained
:
if
pretrained
:
with
torch_distributed_zero_first
(
RANK
):
with
torch_distributed_zero_first
(
RANK
):
...
@@ -484,8 +485,7 @@ def main(opt, callbacks=Callbacks()):
...
@@ -484,8 +485,7 @@ def main(opt, callbacks=Callbacks()):
opt
.
cfg
,
opt
.
weights
,
opt
.
resume
=
''
,
ckpt
,
True
# reinstate
opt
.
cfg
,
opt
.
weights
,
opt
.
resume
=
''
,
ckpt
,
True
# reinstate
LOGGER
.
info
(
f
'Resuming training from {ckpt}'
)
LOGGER
.
info
(
f
'Resuming training from {ckpt}'
)
else
:
else
:
check_suffix
(
opt
.
weights
,
'.pt'
)
# check weights
opt
.
data
,
opt
.
cfg
,
opt
.
hyp
=
check_file
(
opt
.
data
),
check_yaml
(
opt
.
cfg
),
check_yaml
(
opt
.
hyp
)
# check YAMLs
opt
.
data
,
opt
.
cfg
,
opt
.
hyp
=
check_yaml
(
opt
.
data
),
check_yaml
(
opt
.
cfg
),
check_yaml
(
opt
.
hyp
)
# check YAMLs
assert
len
(
opt
.
cfg
)
or
len
(
opt
.
weights
),
'either --cfg or --weights must be specified'
assert
len
(
opt
.
cfg
)
or
len
(
opt
.
weights
),
'either --cfg or --weights must be specified'
if
opt
.
evolve
:
if
opt
.
evolve
:
opt
.
project
=
'runs/evolve'
opt
.
project
=
'runs/evolve'
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论