1
0
Fork 0
mirror of synced 2024-06-26 10:10:49 +12:00

Fix error in training script due to missing libcudnn.so

This commit is contained in:
nagadomi 2015-12-09 07:04:04 +09:00
parent c4df6f11f4
commit 56582b8401

View file

@ -9,7 +9,7 @@ function nn.SpatialConvolutionMM:reset(stdv)
self.weight:normal(0, stdv)
self.bias:zero()
end
if cudnn then
if cudnn and cudnn.SpatialConvolution then
function cudnn.SpatialConvolution:reset(stdv)
stdv = math.sqrt(2 / ((1.0 + 0.1 * 0.1) * self.kW * self.kH * self.nOutputPlane))
self.weight:normal(0, stdv)