Returns the value of this variable, read in the current context. Can be different from value() if it's on another device, with control dependencies, etc. Returns: A `Tensor` containing the value of the variable.
(self)
| 656 | raise NotImplementedError |
| 657 | |
| 658 | def read_value(self): |
| 659 | """Returns the value of this variable, read in the current context. |
| 660 | |
| 661 | Can be different from value() if it's on another device, with control |
| 662 | dependencies, etc. |
| 663 | |
| 664 | Returns: |
| 665 | A `Tensor` containing the value of the variable. |
| 666 | """ |
| 667 | raise NotImplementedError |
| 668 | |
| 669 | def set_shape(self, shape): |
| 670 | """Overrides the shape for this variable. |
no outgoing calls