(
initialValue: Tensor<R>, public trainable: boolean, name: string,
tensorId: number)
| 565 | name: string; |
| 566 | |
| 567 | constructor( |
| 568 | initialValue: Tensor<R>, public trainable: boolean, name: string, |
| 569 | tensorId: number) { |
| 570 | super( |
| 571 | initialValue.shape, initialValue.dtype, initialValue.dataId, tensorId); |
| 572 | this.name = name; |
| 573 | } |
| 574 | |
| 575 | /** |
| 576 | * Assign a new `tf.Tensor` to this variable. The new `tf.Tensor` must have |
nothing calls this directly
no outgoing calls
no test coverage detected