get_shape
(tensor)
| 216 | """func""" |
| 217 | |
| 218 | def get_shape(tensor): |
| 219 | """get_shape""" |
| 220 | return tensor.get_shape() if hasattr(tensor, "get_shape") else tensor.shape |
| 221 | |
| 222 | def slice_tensor(tensor, start, end): |
| 223 | """slice_tensor""" |
no test coverage detected