(self)
| 893 | return self |
| 894 | |
| 895 | def __str__(self): |
| 896 | return "tf.Tensor(%s, shape=%s, dtype=%s)" % (numpy_text(self), self.shape, |
| 897 | self.dtype.name) |
| 898 | |
| 899 | def __repr__(self): |
| 900 | return "<tf.Tensor: id=%s, shape=%s, dtype=%s, numpy=%s>" % ( |
nothing calls this directly
no test coverage detected