Skip to content

Latest commit

 

History

History
66 lines (36 loc) · 1.33 KB

File metadata and controls

66 lines (36 loc) · 1.33 KB

ReImproveJS > 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