コード例 #1
0
ファイル: test_scalar_ops.py プロジェクト: zaxtax/autograd
def test_negative():
    fun = lambda x : np.negative(x)
    d_fun = grad(fun)
    check_grads(fun, npr.rand())
    check_grads(d_fun, npr.rand())
コード例 #2
0
def test_negative():
    fun = lambda x : np.negative(x)
    d_fun = grad(fun)
    check_grads(fun, npr.rand())
    check_grads(d_fun, npr.rand())
コード例 #3
0
ファイル: generic.py プロジェクト: wesselb/lab
def negative(a: Numeric):
    return anp.negative(a)
コード例 #4
0
def test_negative():
    fun = lambda x: np.negative(x)
    check_grads(fun)(npr.rand())
コード例 #5
0
ファイル: test_scalar_ops.py プロジェクト: HIPS/autograd
def test_negative():
    fun = lambda x : np.negative(x)
    check_grads(fun)(npr.rand())