MCPcopy
hub / github.com/tensorflow/playground / ActivationFunction

Interface ActivationFunction

src/nn.ts:81–84  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

79
80/** A node's activation function and its derivative. */
81export interface ActivationFunction {
82 output: (input: number) => number;
83 der: (input: number) => number;
84}
85
86/** Function that computes a penalty cost for a given weight in the network. */
87export interface RegularizationFunction {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…