"PyTorch/NLP/git@developer.sourcefind.cn:dcuai/dlexamples.git" did not exist on "7143f128d123030056bc4295a6b7c2d0bde36c03"
Commit d341e182 authored by LDOUBLEV's avatar LDOUBLEV
Browse files

fix rename

parent 5f2ecb85
...@@ -223,13 +223,13 @@ class RSEFPN(nn.Layer): ...@@ -223,13 +223,13 @@ class RSEFPN(nn.Layer):
for i in range(len(in_channels)): for i in range(len(in_channels)):
self.ins_conv.append( self.ins_conv.append(
CALayer( RSELayer(
in_channels[i], in_channels[i],
out_channels, out_channels,
kernel_size=1, kernel_size=1,
shortcut=shortcut)) shortcut=shortcut))
self.inp_conv.append( self.inp_conv.append(
CALayer( RSELayer(
out_channels, out_channels,
out_channels // 4, out_channels // 4,
kernel_size=3, kernel_size=3,
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment