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

Interface ErrorFunction

src/nn.ts:75–78  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

73 * An error function and its derivative.
74 */
75export interface ErrorFunction {
76 error: (output: number, target: number) => number;
77 der: (output: number, target: number) => number;
78}
79
80/** A node's activation function and its derivative. */
81export interface ActivationFunction {

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…