* Executes the inference for given input tensors in Async fashion. * @param inputs Tensor map for the model inputs, keyed by the input node * names. * @param outputs output node name from the Tensorflow model, if no outputs * are specified, the default outputs of the model would be used.
(inputs: NamedTensorMap, outputs?: string[])
| 418 | * array. |
| 419 | */ |
| 420 | async executeAsync(inputs: NamedTensorMap, outputs?: string[]): |
| 421 | Promise<Tensor[]> { |
| 422 | return this._executeAsync(inputs, outputs); |
| 423 | } |
| 424 | |
| 425 | disposeIntermediateTensors() { |
| 426 | if (!this.clonedTensorsMap) { |
nothing calls this directly
no test coverage detected