Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

relu python

def ReLu(x):
  new_x = []
  for i in x:
    new_x.append(max(0.0, x))
  return new_x
 
PREVIOUS NEXT
Tagged: #relu #python
ADD COMMENT
Topic
Name
4+7 =