utils/symbol/symbol_resnetv2.py [55:64]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
                               first_block=(i==1),
                               num_group=group,
                               stride=((2,2) if (i==1) else (1,1)),
                               ratio=ratio,
                               use_se=use_se)

    # stage 4
    num_in  = num_out
    num_mid = int(2*num_mid)
    num_out = int(2*num_out)
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



utils/symbol/symbol_resnetv2.py [71:80]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
                               first_block=(i==1),
                               num_group=group,
                               stride=((2,2) if (i==1) else (1,1)),
                               ratio=ratio,
                               use_se=use_se)

    # stage 5
    num_in  = num_out
    num_mid = int(2*num_mid)
    num_out = int(2*num_out)
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



