Esempio n. 1
0
def test_LogSoftmax(tmpdir, dtype):
    with C.default_options(dtype=dtype):
        model = C.log_softmax(np.array([[1, 1, 2, 3]]).astype(dtype))
        verify_no_input(model, tmpdir, 'LogSoftmax_0')
Esempio n. 2
0
def test_LogSoftmax(tmpdir):
    model = C.log_softmax([[1, 1, 2, 3]])
    verify_no_input(model, tmpdir, 'LogSoftmax_0')
Esempio n. 3
0
def test_LogSoftmax(tmpdir, dtype):
    with C.default_options(dtype = dtype):
        model = C.log_softmax(np.array([[1, 1, 2, 3]]).astype(dtype))
        verify_no_input(model, tmpdir, 'LogSoftmax_0')