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_qint32 = np.dtype([("qint32", np.int32, 1)])
时间: 2023-05-01 12:02:28 浏览: 254
tensorflow\python\framework\dtypes.py:523: FutureWarning: Passing (type, 1) or ‘1type’解决办法
这是一个关于NumPy库的警告信息。它表示在未来的版本中,传递类似于(type, 1)或'1type'的参数将被认为是(type, (1,))或'(1,)type'。具体来说,_np_qint32是一个NumPy数据类型,包含一个名为"qint32"的字段,该字段使用32位整数作为数据类型,并且有一个长度为1的数组。这个警告信息是因为在未来的版本中,传递(类型,1)将不再被支持,而应该使用(类型,(1,))来表示长度为1的数组。
阅读全文