Skip to content

Commit

Permalink
Fix SSD512 config error (#6574)
Browse files Browse the repository at this point in the history
* Fix mosaic repr typo (#6523)

* Include mmflow in readme (#6545)

* Include mmflow in readme

* Include mmflow in README_zh-CN

* Add mmflow url into the document menu in docs/conf.py and docs_zh-CN/conf.py.

* Make OHEM work with seesaw loss (#6514)

* Fix ssd512 config error

Co-authored-by: Kyungmin Lee <30465912+lkm2835@users.noreply.github.com>
Co-authored-by: Czm369 <40661020+Czm369@users.noreply.github.com>
Co-authored-by: ohwi <supebulous@gmail.com>
  • Loading branch information
4 people authored and ZwwWayne committed Nov 30, 2021
1 parent 051ae12 commit a551234
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions configs/pascal_voc/ssd512_voc0712.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
_base_ = 'ssd300_voc0712.py'
input_size = 512
model = dict(
neck=dict(
out_channels=(512, 1024, 512, 256, 256, 256, 256),
level_strides=(2, 2, 2, 2, 1),
level_paddings=(1, 1, 1, 1, 1),
last_kernel_size=4),
bbox_head=dict(
in_channels=(512, 1024, 512, 256, 256, 256, 256),
anchor_generator=dict(
Expand Down

0 comments on commit a551234

Please sign in to comment.