Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

machine learning cheatsheet activation function

def elu(z,alpha):
	return z if z >= 0 else alpha*(e^z -1)
Source by ml-cheatsheet.readthedocs.io #
 
PREVIOUS NEXT
Tagged: #machine #learning #cheatsheet #activation #function
ADD COMMENT
Topic
Name
8+9 =