Merge pull request from nemonameless/fix_ShuffleNetV2_x2_0_ch

fix ShuffleNetV2 config
pull/2052/head
cuicheng01 2022-06-14 10:43:43 +08:00 committed by GitHub
commit 61b7b3487a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions
ppcls/arch/backbone/model_zoo

View File

@ -233,7 +233,7 @@ class ShuffleNet(Layer):
elif scale == 1.5:
stage_out_channels = [-1, 24, 176, 352, 704, 1024]
elif scale == 2.0:
stage_out_channels = [-1, 24, 224, 488, 976, 2048]
stage_out_channels = [-1, 24, 244, 488, 976, 2048]
else:
raise NotImplementedError("This scale size:[" + str(scale) +
"] is not implemented!")