shervinea / cheatsheet-translation

Translation of VIP cheatsheets for Machine Learning Deep Learning, and Artificial Intelligence
MIT License
893 stars 333 forks source link

typo in Sigmoid function range #215

Closed AlexandrParkhomenko closed 3 years ago

AlexandrParkhomenko commented 3 years ago

typo

https://stanford.edu/~shervine/teaching/cs-229/cheatsheet-supervised-learning g(z)=1+e−z1​∈ ]0,1[​

need:

[0, 1]

shervinea commented 3 years ago

Thanks for your message and your interest @AlexandrParkhomenko.

This notation follows the ISO 31-11 convention on sets. Here, ]0,1[ denotes the interval in R from 0 to 1, bounds excluded. The exclusion of bounds is intentional since the function never outputs 0 nor 1.

AlexandrParkhomenko commented 3 years ago

I did not know. Thanks for a quick and complete answer.