(condition: Tensor)
| 320 | } |
| 321 | |
| 322 | where(condition: Tensor): Tensor2D { |
| 323 | return this.executeSingleOutput('Where', [], [condition]) as Tensor2D; |
| 324 | } |
| 325 | |
| 326 | topKValues<T extends Tensor>(x: T, k: number): Tensor1D { |
| 327 | throw new Error('Method not implemented.'); |
nothing calls this directly
no test coverage detected