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

hidden_size添加默认参数

parent f5613aa9
...@@ -116,7 +116,7 @@ class EncoderWithFC(nn.Layer): ...@@ -116,7 +116,7 @@ class EncoderWithFC(nn.Layer):
class SequenceEncoder(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__() super(SequenceEncoder, self).__init__()
self.encoder_reshape = EncoderWithReshape(in_channels) self.encoder_reshape = EncoderWithReshape(in_channels)
self.out_channels = self.encoder_reshape.out_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