"vscode:/vscode.git/clone" did not exist on "131a99b747a0fbf3349ec391fd2bc36d8da763dc"
Commit 24633556 authored by WenmuZhou's avatar WenmuZhou
Browse files

hidden_size添加默认参数

parent f5613aa9
......@@ -116,7 +116,7 @@ class EncoderWithFC(nn.Layer):
class SequenceEncoder(nn.Layer):
def __init__(self, in_channels, encoder_type, hidden_size, **kwargs):
def __init__(self, in_channels, encoder_type, hidden_size=48, **kwargs):
super(SequenceEncoder, self).__init__()
self.encoder_reshape = EncoderWithReshape(in_channels)
self.out_channels = self.encoder_reshape.out_channels
......
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