秉承着完美主义的倔强,绝不允许出现报警信息。PS:虽然有报警信息但是不影响我正常使用
以下是报警信息:
提炼信息主干可以得到主要是函数np.array造成的报警信息,对应numpy依赖对应的版本为1.21.1.
VisibleDeprecationWarning: Creating an ndarray from ragged nested sequences (which is a list-or-tuple of lists-or-tuples-or ndarrays with different lengths or shapes) is deprecated. If you meant to do this, you must specify 'dtype=object' when creating the ndarray.
根据提示: 'dtype=object' ,更改为:np.array(参数,dtype=object)。本人亲测在我代码中无效,不可解决该问题。经过反复思考后将nn.array更改为list即可。
更改后:
网友评论