* Convert tensor data to a n-dimensional JS list * @returns {any[]}
()
| 199 | * @returns {any[]} |
| 200 | */ |
| 201 | tolist() { |
| 202 | return reshape(this.data, this.dims); |
| 203 | } |
| 204 | |
| 205 | /** |
| 206 | * Return a new Tensor with the sigmoid function applied to each element. |
no test coverage detected