| 29 | } |
| 30 | |
| 31 | export interface INeuralNetworkJSON { |
| 32 | sizes: number[]; |
| 33 | layers: object[]; |
| 34 | outputLookup: any; |
| 35 | inputLookup: any; |
| 36 | activation: NeuralNetworkActivation, |
| 37 | trainOpts: INeuralNetworkTrainingOptions, |
| 38 | leakyReluAlpha?: number, |
| 39 | } |
| 40 | |
| 41 | export interface INeuralNetworkTrainingData { |
| 42 | input: NeuralNetworkTrainingValue; |
nothing calls this directly
no outgoing calls
no test coverage detected