把(1,100,26)的数组reshape后为什么变成了好多个不同数组
```python x = np.reshape(x, (10, -1, 26)) 得到的shape是: (10, 15, 26) (10, 0, 26) (10, 0, 26) (10, 0, 26) (10, 0, 26) (10, 0, 26) (10, 0, 26) 提示错误: IndexError: too many indices for array
```