Skip to content

Commit

Permalink
[Doc]: Fix typo in docs/zh_cn/tutorials/config.md (open-mmlab#9416)
Browse files Browse the repository at this point in the history
  • Loading branch information
DonggeunYu authored and Théo Megy committed May 5, 2023
1 parent a112072 commit 8a838f0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/zh_cn/tutorials/config.md
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,7 @@ model = dict(
rpn_proposal=dict( # 在训练期间生成 proposals 的配置
nms_across_levels=False, # 是否对跨层的 box 做 NMS。仅适用于 `GARPNHead` ,naive rpn 不支持 nms cross levels。
nms_pre=2000, # NMS 前的 box 数
nms_post=1000, # NMS 要保留的 box 的数量,只在 GARPNHHead 中起作用。
nms_post=1000, # NMS 要保留的 box 的数量,只在 GARPNHead 中起作用。
max_per_img=1000, # NMS 后要保留的 box 数量。
nms=dict( # NMS 的配置
type='nms', # NMS 的类别
Expand Down Expand Up @@ -215,7 +215,7 @@ model = dict(
rpn=dict( # 测试阶段生成 proposals 的配置
nms_across_levels=False, # 是否对跨层的 box 做 NMS。仅适用于`GARPNHead`,naive rpn 不支持做 NMS cross levels。
nms_pre=1000, # NMS 前的 box 数
nms_post=1000, # NMS 要保留的 box 的数量,只在`GARPNHHead`中起作用。
nms_post=1000, # NMS 要保留的 box 的数量,只在`GARPNHead`中起作用。
max_per_img=1000, # NMS 后要保留的 box 数量
nms=dict( # NMS 的配置
type='nms', # NMS 的类型
Expand Down

0 comments on commit 8a838f0

Please sign in to comment.