MCPcopy Create free account
hub / github.com/tensorflow/tfjs / outputNodes

Method outputNodes

tfjs-converter/src/executor/graph_executor.ts:112–117  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

110 }
111
112 get outputNodes(): string[] {
113 return this._outputs.map((node) => {
114 const name = node.signatureKey || node.name;
115 return node.defaultOutput ? (`${name}:${node.defaultOutput}`) : name;
116 });
117 }
118
119 get functions(): {[key: string]: ISignatureDef} {
120 return Object.keys(this._functions).reduce((map, key) => {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected