(self)
| 897 | self.dtype.name) |
| 898 | |
| 899 | def __repr__(self): |
| 900 | return "<tf.Tensor: id=%s, shape=%s, dtype=%s, numpy=%s>" % ( |
| 901 | self._id, self.shape, self.dtype.name, numpy_text(self, is_repr=True)) |
| 902 | |
| 903 | def __len__(self): |
| 904 | """Returns the length of the first dimension in the Tensor.""" |
nothing calls this directly
no test coverage detected