本文整理汇总了Python中unittest.TestCase.assertAlmostEquals方法的典型用法代码示例。如果您正苦于以下问题:Python TestCase.assertAlmostEquals方法的具体用法?Python TestCase.assertAlmostEquals怎么用?Python TestCase.assertAlmostEquals使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类unittest.TestCase
的用法示例。
在下文中一共展示了TestCase.assertAlmostEquals方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: train_on_batch
# 需要导入模块: from unittest import TestCase [as 别名]
# 或者: from unittest.TestCase import assertAlmostEquals [as 别名]
[1., -1.]]
W2 = [[ 1., 2., 1.],
[-1., 2., -1.]]
W = [W1, W2]
loss = 0.
for x in xs:
W, b, loss = train_on_batch(x, W, b)
W1, W2 = W
b1, b2 = b
# test loss
expected_loss = 20.5
TestCase.assertAlmostEquals(TestCase, first=loss, second=expected_loss)
# test W2
expected_W2 = [[ 1., 1.95, 0.75],
[-1., 2.04, -0.8]]
for column in range(len(W2)):
for row in range(len(W2[column])):
TestCase.assertAlmostEquals(TestCase, first=W2[column][row], second=expected_W2[column][row])
# test W1
expected_W1 = [[ 0.91, 2.09],
[-0.02, 1.02],
[ 0.91, -0.91]]
for column in range(len(W1)):
for row in range(len(W1[column])):
TestCase.assertAlmostEquals(TestCase, first=W1[column][row], second=expected_W1[column][row])