Softmax Function
The Softmax function
Example
```javascript let softmax = require('softmax-fn'); softmax(1); // 1 softmax(1, 2, 4.3); // 0.03243497033829723, 0.08816739047720148, 0.8793976391845013 ```Installation
``` $ npm install softmax-fn ```API
```javascript var softmax = require('softmax-fn'); ```softmax(values)
Links
- Github: Softmax
- Github Page: Softmax
- Wikipedia: Softmax Function