()
| 253 | } |
| 254 | |
| 255 | get outputNodeNames() { |
| 256 | if (this.outputNodeNames_ != null) { |
| 257 | return this.outputNodeNames_; |
| 258 | } |
| 259 | this.outputNodeNames_ = |
| 260 | Object.keys(this.signature.outputs) |
| 261 | .reduce((names: {[key: string]: string}, key: string) => { |
| 262 | names[key] = this.signature.outputs[key].name; |
| 263 | return names; |
| 264 | }, {}); |
| 265 | return this.outputNodeNames_; |
| 266 | } |
| 267 | |
| 268 | /** |
| 269 | * Execute the inference for the input tensors. |
nothing calls this directly
no outgoing calls
no test coverage detected