美文网首页python日常学习
完美主义的倔强之np.array报警【python】篇

完美主义的倔强之np.array报警【python】篇

作者: 小小杨树 | 来源:发表于2021-08-04 15:42 被阅读0次

    秉承着完美主义的倔强,绝不允许出现报警信息。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即可。


    更改后:

    相关文章

      网友评论

        本文标题:完美主义的倔强之np.array报警【python】篇

        本文链接:https://www.haomeiwen.com/subject/heyuvltx.html