Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
MegEngine 天元
Models
提交
61d87c76
M
Models
项目概览
MegEngine 天元
/
Models
通知
6
Star
3
Fork
3
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
M
Models
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
未验证
提交
61d87c76
编写于
7月 28, 2020
作者:
J
Jianfeng Wang
提交者:
GitHub
7月 28, 2020
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
fix(detection): avoid loading backbone weight when imported from hub (#53)
上级
473ae5d9
变更
8
隐藏空白更改
内联
并排
Showing
8 changed file
with
24 addition
and
8 deletion
+24
-8
official/vision/detection/configs/faster_rcnn_res101_coco_2x_800size.py
...n/detection/configs/faster_rcnn_res101_coco_2x_800size.py
+3
-1
official/vision/detection/configs/faster_rcnn_res50_coco_1x_800size.py
...on/detection/configs/faster_rcnn_res50_coco_1x_800size.py
+3
-1
official/vision/detection/configs/faster_rcnn_res50_coco_1x_800size_syncbn.py
...ction/configs/faster_rcnn_res50_coco_1x_800size_syncbn.py
+3
-1
official/vision/detection/configs/faster_rcnn_resx101_coco_2x_800size.py
.../detection/configs/faster_rcnn_resx101_coco_2x_800size.py
+3
-1
official/vision/detection/configs/retinanet_res101_coco_2x_800size.py
...ion/detection/configs/retinanet_res101_coco_2x_800size.py
+3
-1
official/vision/detection/configs/retinanet_res50_coco_1x_800size.py
...sion/detection/configs/retinanet_res50_coco_1x_800size.py
+3
-1
official/vision/detection/configs/retinanet_res50_coco_1x_800size_syncbn.py
...tection/configs/retinanet_res50_coco_1x_800size_syncbn.py
+3
-1
official/vision/detection/configs/retinanet_resx101_coco_2x_800size.py
...on/detection/configs/retinanet_resx101_coco_2x_800size.py
+3
-1
未找到文件。
official/vision/detection/configs/faster_rcnn_res101_coco_2x_800size.py
浏览文件 @
61d87c76
...
...
@@ -33,7 +33,9 @@ def faster_rcnn_res101_coco_2x_800size(batch_size=1, **kwargs):
`"FPN" <https://arxiv.org/abs/1612.03144>`_
`"COCO" <https://arxiv.org/abs/1405.0312>`_
"""
return
models
.
FasterRCNN
(
CustomFasterRCNNConfig
(),
batch_size
=
batch_size
,
**
kwargs
)
cfg
=
CustomFasterRCNNConfig
()
cfg
.
backbone_pretrained
=
False
return
models
.
FasterRCNN
(
cfg
,
batch_size
=
batch_size
,
**
kwargs
)
Net
=
models
.
FasterRCNN
...
...
official/vision/detection/configs/faster_rcnn_res50_coco_1x_800size.py
浏览文件 @
61d87c76
...
...
@@ -22,7 +22,9 @@ def faster_rcnn_res50_coco_1x_800size(batch_size=1, **kwargs):
`"FPN" <https://arxiv.org/abs/1612.03144>`_
`"COCO" <https://arxiv.org/abs/1405.0312>`_
"""
return
models
.
FasterRCNN
(
models
.
FasterRCNNConfig
(),
batch_size
=
batch_size
,
**
kwargs
)
cfg
=
models
.
FasterRCNNConfig
()
cfg
.
backbone_pretrained
=
False
return
models
.
FasterRCNN
(
cfg
,
batch_size
=
batch_size
,
**
kwargs
)
Net
=
models
.
FasterRCNN
...
...
official/vision/detection/configs/faster_rcnn_res50_coco_1x_800size_syncbn.py
浏览文件 @
61d87c76
...
...
@@ -32,7 +32,9 @@ def faster_rcnn_res50_coco_1x_800size_syncbn(batch_size=1, **kwargs):
`"COCO" <https://arxiv.org/abs/1405.0312>`_
`"SyncBN" <https://arxiv.org/abs/1711.07240>`_
"""
return
models
.
FasterRCNN
(
CustomFasterRCNNConfig
(),
batch_size
=
batch_size
,
**
kwargs
)
cfg
=
CustomFasterRCNNConfig
()
cfg
.
backbone_pretrained
=
False
return
models
.
FasterRCNN
(
cfg
,
batch_size
=
batch_size
,
**
kwargs
)
Net
=
models
.
FasterRCNN
...
...
official/vision/detection/configs/faster_rcnn_resx101_coco_2x_800size.py
浏览文件 @
61d87c76
...
...
@@ -33,7 +33,9 @@ def faster_rcnn_resx101_coco_2x_800size(batch_size=1, **kwargs):
`"FPN" <https://arxiv.org/abs/1612.03144>`_
`"COCO" <https://arxiv.org/abs/1405.0312>`_
"""
return
models
.
FasterRCNN
(
CustomFasterRCNNConfig
(),
batch_size
=
batch_size
,
**
kwargs
)
cfg
=
CustomFasterRCNNConfig
()
cfg
.
backbone_pretrained
=
False
return
models
.
FasterRCNN
(
cfg
,
batch_size
=
batch_size
,
**
kwargs
)
Net
=
models
.
FasterRCNN
...
...
official/vision/detection/configs/retinanet_res101_coco_2x_800size.py
浏览文件 @
61d87c76
...
...
@@ -33,7 +33,9 @@ def retinanet_res101_coco_2x_800size(batch_size=1, **kwargs):
`"FPN" <https://arxiv.org/abs/1612.03144>`_
`"COCO" <https://arxiv.org/abs/1405.0312>`_
"""
return
models
.
RetinaNet
(
CustomRetinaNetConfig
(),
batch_size
=
batch_size
,
**
kwargs
)
cfg
=
CustomRetinaNetConfig
()
cfg
.
backbone_pretrained
=
False
return
models
.
RetinaNet
(
cfg
,
batch_size
=
batch_size
,
**
kwargs
)
Net
=
models
.
RetinaNet
...
...
official/vision/detection/configs/retinanet_res50_coco_1x_800size.py
浏览文件 @
61d87c76
...
...
@@ -22,7 +22,9 @@ def retinanet_res50_coco_1x_800size(batch_size=1, **kwargs):
`"FPN" <https://arxiv.org/abs/1612.03144>`_
`"COCO" <https://arxiv.org/abs/1405.0312>`_
"""
return
models
.
RetinaNet
(
models
.
RetinaNetConfig
(),
batch_size
=
batch_size
,
**
kwargs
)
cfg
=
models
.
RetinaNetConfig
()
cfg
.
backbone_pretrained
=
False
return
models
.
RetinaNet
(
cfg
,
batch_size
=
batch_size
,
**
kwargs
)
Net
=
models
.
RetinaNet
...
...
official/vision/detection/configs/retinanet_res50_coco_1x_800size_syncbn.py
浏览文件 @
61d87c76
...
...
@@ -32,7 +32,9 @@ def retinanet_res50_coco_1x_800size_syncbn(batch_size=1, **kwargs):
`"COCO" <https://arxiv.org/abs/1405.0312>`_
`"SyncBN" <https://arxiv.org/abs/1711.07240>`_
"""
return
models
.
RetinaNet
(
CustomRetinaNetConfig
(),
batch_size
=
batch_size
,
**
kwargs
)
cfg
=
CustomRetinaNetConfig
()
cfg
.
backbone_pretrained
=
False
return
models
.
RetinaNet
(
cfg
,
batch_size
=
batch_size
,
**
kwargs
)
Net
=
models
.
RetinaNet
...
...
official/vision/detection/configs/retinanet_resx101_coco_2x_800size.py
浏览文件 @
61d87c76
...
...
@@ -33,7 +33,9 @@ def retinanet_resx101_coco_2x_800size(batch_size=1, **kwargs):
`"FPN" <https://arxiv.org/abs/1612.03144>`_
`"COCO" <https://arxiv.org/abs/1405.0312>`_
"""
return
models
.
RetinaNet
(
CustomRetinaNetConfig
(),
batch_size
=
batch_size
,
**
kwargs
)
cfg
=
CustomRetinaNetConfig
()
cfg
.
backbone_pretrained
=
False
return
models
.
RetinaNet
(
cfg
,
batch_size
=
batch_size
,
**
kwargs
)
Net
=
models
.
RetinaNet
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录