Perceptron - Which step function to choose
I'm studying Perceptron
algorithm. Some books use this step function
1 if x>=0 else -1
where x is a dot product between the weights w and a sample x.
Other books use:
1 if x>=0 else 0
What are the practical differences between these step functions?
Topic perceptron deep-learning neural-network machine-learning
Category Data Science