Commit 7492fae4 authored by Sri Krishna's avatar Sri Krishna Committed by Soumith Chintala
Browse files

Update vgg.py (#233)

parent 25f81c28
......@@ -54,7 +54,6 @@ class VGG(nn.Module):
m.weight.data.fill_(1)
m.bias.data.zero_()
elif isinstance(m, nn.Linear):
n = m.weight.size(1)
m.weight.data.normal_(0, 0.01)
m.bias.data.zero_()
......
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