"torchvision/git@developer.sourcefind.cn:OpenDAS/vision.git" did not exist on "1ed61e4b2ec2e33ac6cada0729cf49e5aaefe6a6"
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): ...@@ -458,7 +458,7 @@ def LSTMCell(input_size, hidden_size, **kwargs):
def Linear(in_features, out_features, bias=True, dropout=0): 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 = nn.Linear(in_features, out_features, bias=bias)
m.weight.data.uniform_(-0.1, 0.1) m.weight.data.uniform_(-0.1, 0.1)
if bias: 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