Globals / LayerConfig /
Simplified layer configuration where you only give your layer, your activation function and the number of units.
- LayerConfig
● activation: string
Defined in reimprove/model.ts:27
The activation function ('relu', 'sigmoid', ...)
● inputShape? : Array<number>
Defined in reimprove/model.ts:25
If it is an input layer, the size of the input
● units: number
Defined in reimprove/model.ts:23
Number of neurons of this layer
● useBias? : boolean
Defined in reimprove/model.ts:28