示例#1
0
def test_lsnn_cell():
    cell = lsnn.LSNNCell(2, 2)
    state = cell.initial_state(5, "cpu")
    data = torch.ones(5, 2)
    z, state = cell(data, state)
    np.testing.assert_equal(z.numpy(), np.zeros((5, 2)))
    z, state = cell(data, state)
    np.testing.assert_raises(
        AssertionError,
        np.testing.assert_equal,
        state.i.detach().numpy(),
        np.zeros((5, 2)),
    )
示例#2
0
def test_lsnn_cell():
    cell = lsnn.LSNNCell(2, 10)
    state = cell.initial_state(5, "cpu")
    data = torch.zeros(5, 2)
    z, state = cell(data, state)
    np.testing.assert_equal(z.numpy(), np.zeros((5, 10)))
示例#3
0
def test_lsnn_forward_shape_fail():
    cell = lsnn.LSNNCell(2, 10)
    state = cell.initial_state(5, "cpu")
    data = torch.zeros(10)
    cell.forward(data, state)
示例#4
0
def test_lsnn_state_fail():
    # pylint: disable=E1120
    cell = lsnn.LSNNCell(2, 10)
    cell.initial_state()
示例#5
0
def test_lsnn_cell_param_fail():
    # pylint: disable=E1120
    _ = lsnn.LSNNCell()
示例#6
0
def test_lsnn_cell():
    cell = lsnn.LSNNCell(2, 10)
    state = cell.initial_state(5, "cpu")
    data = torch.zeros(5, 2)
    z, state = cell(data, state)
    assert torch.equal(z, torch.zeros(5, 10))
示例#7
0
def test_lsnn_state_fail():
    cell = lsnn.LSNNCell(2, 10)
    cell.initial_state()
示例#8
0
def test_lsnn_cell_param_fail():
    cell = lsnn.LSNNCell()