Skip to content

Latest commit

 

History

History
57 lines (43 loc) · 1.71 KB

check.rst

File metadata and controls

57 lines (43 loc) · 1.71 KB

Assertion and Testing

Chainer provides some facilities to make debugging easy.

Type checking utilities

~chainer.FunctionNode uses a systematic type checking of the chainer.utils.type_check module. It enables users to easily find bugs of forward and backward implementations. You can find examples of type checking in some function implementations.

chainer.utils.type_check.Expr chainer.utils.type_check.expect chainer.utils.type_check.TypeInfo chainer.utils.type_check.TypeInfoTuple

Gradient checking utilities

Most function implementations are numerically tested by gradient checking. This method computes numerical gradients of forward routines and compares their results with the corresponding backward routines. It enables us to make the source of issues clear when we hit an error of gradient computations. The chainer.gradient_check module makes it easy to implement the gradient checking.

chainer.gradient_check.check_backward chainer.gradient_check.numerical_grad

Standard Assertions

The assertions have same names as NumPy's ones. The difference from NumPy is that they can accept both numpy.ndarray and cupy.ndarray.

chainer.testing.assert_allclose

Function testing utilities

Chainer provides some utilities for testing its functions.

chainer.testing.unary_math_function_unittest