Skip to content

Latest commit

 

History

History
60 lines (32 loc) · 1.28 KB

layerconfig.md

File metadata and controls

60 lines (32 loc) · 1.28 KB

Globals / LayerConfig /

Interface: LayerConfig

Simplified layer configuration where you only give your layer, your activation function and the number of units.

Hierarchy

  • LayerConfig

Index

Properties

Properties

activation

activation: string

Defined in reimprove/model.ts:27

The activation function ('relu', 'sigmoid', ...)


Optional inputShape

inputShape? : Array<number>

Defined in reimprove/model.ts:25

If it is an input layer, the size of the input


units

units: number

Defined in reimprove/model.ts:23

Number of neurons of this layer


Optional useBias

useBias? : boolean

Defined in reimprove/model.ts:28