liquidcarrot / carrot

🥕 Evolutionary Neural Networks in JavaScript
https://liquidcarrot.io/carrot/
MIT License
293 stars 34 forks source link

Missing brackets at calculating SOFTSIGN activation #209

Closed raimannma closed 4 years ago

raimannma commented 4 years ago

https://github.com/liquidcarrot/carrot/blob/13bcce374174b39a5e6d73dcb5d976631f43e7ff/src/methods/activation.js#L226

x / 1 + Math.abs(x) should be x / (1 + Math.abs(x))

christianechevarria commented 4 years ago

Good catch, merging PR now