AttributeError: module 'numpy' has no attribute 'short'
时间: 2023-11-17 15:09:02 浏览: 125
AttributeError: module 'tensorflow.compat.v1' has no attribute '
这个错误通常是因为numpy模块中没有short属性导致的。numpy模块中没有short属性,但是有int16属性,可以使用int16代替short。下面是一个例子:
```python
import numpy as np
arr = np.array([1, 2, 3], dtype=np.int16)
print(arr)
```
输出:
```
[1 2 3]
```
阅读全文