当前位置: 首页>>代码示例>>Python>>正文


Python TestCase.assertAlmostEquals方法代码示例

本文整理汇总了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])
开发者ID:nzw0301,项目名称:PFI_PFN_summer_intern_task_code,代码行数:33,代码来源:task3.py


注:本文中的unittest.TestCase.assertAlmostEquals方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。