| 141 | } |
| 142 | |
| 143 | double Network::sigmoid(double x) { |
| 144 | return 1 / (1 + exp(-x)); |
| 145 | } |
| 146 | |
| 147 | double Network::sigmoidePrime(double x) { |
| 148 | return exp(-x) / (pow(1 + exp(-x), 2)); |
nothing calls this directly
no outgoing calls
no test coverage detected