res2net 200模型命名python2错误
Created by: miraclebiu
在创建res2net 200层模型时,py2会报错:
UnicodeDecodeError: 'utf8' codec can't decode byte 0x80 in position 4: invalid start byte
因为层数超过26个英文字母,代码里的命名会出错
conv_name = "res" + str(block+2) + chr(97+i)
代码里的上一个分支应该增加res2net200
if layers in [101, 152, 200] and block == 2: