MCPcopy
hub / github.com/BrainJS/brain.js / INeuralNetworkOptions

Interface INeuralNetworkOptions

index.d.ts:2–6  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

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

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected