tf.compat.v1.nn.relu_layer

View source on GitHub

Computes Relu(x * weight + biases).

tf.compat.v1.nn.relu_layer(
    x, weights, biases, name=None
)

Args:

Returns:

A 2-D Tensor computing relu(matmul(x, weights) + biases). Dimensions typically: batch, out_units.