From e50360c1ead4565c3a3aa5e60806dc04736af1b3 Mon Sep 17 00:00:00 2001 From: koray kavukcuoglu Date: Thu, 26 Sep 2013 23:19:19 +0100 Subject: remove WeightedMSECriterion test since it fails with an unknown module --- test/test.lua | 30 +++++++++++++++--------------- 1 file changed, 15 insertions(+), 15 deletions(-) (limited to 'test') diff --git a/test/test.lua b/test/test.lua index 58a9bd7..1eb92ad 100644 --- a/test/test.lua +++ b/test/test.lua @@ -340,21 +340,21 @@ function nntest.WeightedEuclidean() mytester:asserteq(berr, 0, torch.typename(module) .. ' - i/o backward err ') end -function nntest.WeightedMSECriterion() - local from = math.random(100,200) - local input = torch.Tensor(from):zero() - local target = torch.randn(from) - local weight = torch.randn(from) - local cri = nn.WeightedMSECriterion(weight) - local module = nn.CriterionModule(cri,target) - - local err = jac.testJacobian(module, input) - mytester:assertlt(err, precision, 'error on state ') - - local ferr, berr = jac.testIO(module, input) - mytester:asserteq(0, ferr, torch.typename(module) .. ' - i/o forward err ') - mytester:asserteq(0, berr, torch.typename(module) .. ' - i/o backward err ') -end +--function nntest.WeightedMSECriterion() +-- local from = math.random(100,200) +-- local input = torch.Tensor(from):zero() +-- local target = torch.randn(from) +-- local weight = torch.randn(from) +-- local cri = nn.WeightedMSECriterion(weight) +-- local module = nn.CriterionModule(cri,target) + +-- local err = jac.testJacobian(module, input) +-- mytester:assertlt(err, precision, 'error on state ') + +-- local ferr, berr = jac.testIO(module, input) +-- mytester:asserteq(0, ferr, torch.typename(module) .. ' - i/o forward err ') +-- mytester:asserteq(0, berr, torch.typename(module) .. ' - i/o backward err ') +--end function nntest.LogSigmoid() local ini = math.random(10,20) -- cgit v1.2.3