gpt4 book ai didi

Python NumPy : reshape is deprecated

转载 作者:太空狗 更新时间:2023-10-30 02:55:21 26 4
gpt4 key购买 nike

我正在尝试将向量 reshape 为数组

myArray = np.reshape(myVector,[nCol,nRow])

但我收到折旧警告:

FutureWarning: reshape is deprecated and will raise in a subsequent release. Please use .values.reshape(...) instead
return reshape(newshape, order=order)

当我使用

myArray = np.values.reshape(myVector,[nCol,nRow])

我得到一个错误

AttributeError: module 'numpy' has no attribute 'values'

有人可以解释发生了什么事以及我应该做什么吗?非常感谢

最佳答案

调用 np.reshape(whatever args) 不再是调用函数的首选方式。相反,使用这个:

myArray = myVector.values.reshape([nCol,nRow])

关于Python NumPy : reshape is deprecated,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42705313/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com