See tf.concat.
(cls, tensor_wrappers, axis)
| 57 | |
| 58 | @classmethod |
| 59 | def concat(cls, tensor_wrappers, axis): |
| 60 | """See tf.concat.""" |
| 61 | cls._validate_tensor_types(tensor_wrappers, "concat") |
| 62 | return cls._apply_sequence_to_tensor_op( |
| 63 | lambda ts: tf.concat(ts, axis), tensor_wrappers) |
| 64 | |
| 65 | @classmethod |
| 66 | def stack(cls, tensor_wrappers, axis=0): |