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

Interface RegularizationFunction

src/nn.ts:87–90  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

85
86/** Function that computes a penalty cost for a given weight in the network. */
87export interface RegularizationFunction {
88 output: (weight: number) => number;
89 der: (weight: number) => number;
90}
91
92/** Built-in error functions */
93export class Errors {

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…