Answers for "how to define a relu function in python"

3

create a relu function in python

# Method 1
def ReLU(x):
  return max(x,0)

# Method 2 by a lambda function
lambda x:max(x,0)
Posted by: Guest on May-19-2020

Code answers related to "how to define a relu function in python"

Python Answers by Framework

Browse Popular Code Answers by Language