You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Paddle/python/paddle/v2/framework/tests/test_relu_op.py

21 lines
486 B

import unittest
import numpy as np
from op_test import OpTest
class TestRelu(OpTest):
def setUp(self):
self.op_type = "relu"
self.inputs = {'X': np.random.uniform(-1, 1, [4, 4]).astype("float32")}
self.outputs = {'Y': np.maximum(self.inputs['X'], 0)}
def test_check_output(self):
self.check_output()
def test_check_grad(self):
self.check_grad(['X'], 'Y', max_relative_error=0.007)
if __name__ == "__main__":
unittest.main()