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

Method execute

tfjs-node/src/saved_model.ts:364–367  ·  view source on GitHub ↗

* Execute the inference for the input tensors and return activation * values for specified output node names without batching. * * @param input The input tensors, when there is single input for the model, * inputs param should be a Tensor. For models with multiple inputs, inputs * par

(inputs: Tensor|Tensor[]|NamedTensorMap, outputs: string|string[])

Source from the content-addressed store, hash-verified

362 * @doc {heading: 'Models', subheading: 'SavedModel'}
363 */
364 execute(inputs: Tensor|Tensor[]|NamedTensorMap, outputs: string|string[]):
365 Tensor|Tensor[] {
366 throw new Error('execute() of TFSavedModel is not supported yet.');
367 }
368}
369
370/**

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected