Commit 93fec886 authored by Myle Ott's avatar Myle Ott
Browse files

Fix comment

parent 5aa4a627
......@@ -458,7 +458,7 @@ def LSTMCell(input_size, hidden_size, **kwargs):
def Linear(in_features, out_features, bias=True, dropout=0):
"""Weight-normalized Linear layer (input: N x T x C)"""
"""Linear layer (input: N x T x C)"""
m = nn.Linear(in_features, out_features, bias=bias)
m.weight.data.uniform_(-0.1, 0.1)
if bias:
......
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