gpt4 book ai didi

python - 属性错误 : module 'torch' has no attribute 'hstack'

转载 作者:行者123 更新时间:2023-12-04 12:16:09 27 4
gpt4 key购买 nike

关闭。这个问题需要debugging details .它目前不接受答案。












想改善这个问题吗?更新问题,使其成为 on-topic对于堆栈溢出。

去年关闭。




Improve this question




我正在关注 this hstack 的文档.

a = torch.tensor([1, 2, 3])
b = torch.tensor([4, 5, 6])
torch.hstack((a,b))
但我不断收到错误消息:
AttributeError: module 'torch' has no attribute 'hstack'
这是导致此错误的火炬版本:
torch.__version__
'1.6.0+cpu'
我究竟做错了什么?

最佳答案

显然,您正在调用 PyTorch 版本中尚不存在的函数——这就是错误消息的内容。
您的链接指向与开发者预览相关的帮助页面:注意 .8.0a0+342069f左上角的版本号。单击时,单击此处查看最新稳定版本的文档。链接 - 出现错误消息。
此功能在割炬版本 1.8.0. 中可用-- 在那之前考虑使用 torch.cat与'dim = 1'。

torch.cat([a,b], dim=1)  # a, b - 2d torch.Tensors

关于python - 属性错误 : module 'torch' has no attribute 'hstack' ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/64405165/

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