August 2019
Intermediate to advanced
242 pages
5h 45m
English
A Sigmoid or logistic function is also relatively popular, as shown here:
func sigmoid(x){ return 1 / (1 + Exp(-x))}
The output is as follows:

Sigmoid has a property that is also useful: it can map any real number back down to a range between 0 and 1. This can be very useful for producing models that prefer an output between 0 and 1 (for example, a model for predicting the probability of something).
It also has most of the properties we are looking for, as listed here:
Read now
Unlock full access