| 1 | /* NeuralNetwork section */ |
| 2 | export interface INeuralNetworkOptions { |
| 3 | binaryThresh?: number; |
| 4 | hiddenLayers?: number[]; |
| 5 | activation?: NeuralNetworkActivation; |
| 6 | } |
| 7 | |
| 8 | export type NeuralNetworkActivation = 'sigmoid' | 'relu' | 'leaky-relu' | 'tanh'; |
| 9 |
nothing calls this directly
no outgoing calls
no test coverage detected