(xs: LayerVariable[])
| 321 | * @return The values of the inputs, as an `Array` of`tf.Tensor`s. |
| 322 | */ |
| 323 | export function batchGetValue(xs: LayerVariable[]): Tensor[] { |
| 324 | return xs.map(x => x.read()); |
| 325 | } |
| 326 | |
| 327 | /** |
| 328 | * Update the value of multiple Variables at once. |
no test coverage detected
searching dependent graphs…