FutureWarning: Passing (type, 1) or '1type' as a synonym of type is deprecated; in a future version of numpy, it will be understood as (type, (1,)) / '(1,)type'. _np_quint8 = np.dtype([("quint8", np.uint8, 1)])
时间: 2024-04-06 18:34:23 浏览: 111
tensorflow\python\framework\dtypes.py:523: FutureWarning: Passing (type, 1) or ‘1type’解决办法
这是一个警告信息,意思是在未来的 numpy 版本中,将不再支持 (type, 1) 或 '1type' 这样的写法,而需要使用 (type, (1,)) 或 '(1,)type' 的写法。这个警告信息是为了提醒用户,在未来的 numpy 版本中,这种写法可能无法正常工作,建议修改代码以避免出现问题。
阅读全文