See tf.reshape.
(self, shape)
| 90 | return self._apply_op(lambda t: tf.expand_dims(t, axis)) |
| 91 | |
| 92 | def reshape(self, shape): |
| 93 | """See tf.reshape.""" |
| 94 | return self._apply_op(lambda t: tf.reshape(t, shape)) |
| 95 | |
| 96 | def identity(self): |
| 97 | """See tf.identity.""" |