* 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[])
| 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 | /** |
nothing calls this directly
no outgoing calls
no test coverage detected