Skip to content

Commit

Permalink
update config files
Browse files Browse the repository at this point in the history
  • Loading branch information
Chilicyy committed Apr 24, 2023
1 parent 6b9f5f4 commit 8b941c0
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion configs/base/yolov6l_base_finetune.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,10 @@
num_repeats=[1, 6, 12, 18, 6],
out_channels=[64, 128, 256, 512, 1024],
csp_e=float(1)/2,
fuse_P2=True,
),
neck=dict(
type='CSPRepPANNeck',
type='CSPRepBiFPANNeck',
num_repeats=[12, 12, 12, 12],
out_channels=[256, 128, 128, 256, 256, 512],
csp_e=float(1)/2,
Expand Down
2 changes: 1 addition & 1 deletion configs/base/yolov6s_base_finetune.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
cspsppf=True,
),
neck=dict(
type='CSPRepPANNeck',
type='CSPRepBiFPANNeck',
num_repeats=[12, 12, 12, 12],
out_channels=[256, 128, 128, 256, 256, 512],
csp_e=float(1)/2,
Expand Down

0 comments on commit 8b941c0

Please sign in to comment.