作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我使用 pytorch 编写了以下代码并遇到了运行时错误:
tns = torch.tensor([1,0,1])
tns.mean()
---------------------------------------------------------------------------
RuntimeError Traceback (most recent call last)
<ipython-input-666-194e5ab56931> in <module>
----> 1 tns.mean()
RuntimeError: mean(): input dtype should be either floating point or complex dtypes. Got Long instead.
但是,如果我将张量更改为 float ,错误就会消失:
tns = torch.tensor([1.,0,1])
tns.mean()
---------------------------------------------------------------------------
tensor(0.6667)
我的问题是为什么会发生错误。第一个tenor的数据类型是int64而不是Long,为什么PyTorch会把它当作Long?
最佳答案
这是因为 torch.int64
和 torch.long
都引用相同的数据类型,即 64 位有符号整数。参见 here有关所有数据类型的概述。
关于pytorch - RuntimeError : mean(): input dtype should be either floating point or complex dtypes. 变长了,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/70159221/
COW 不是奶牛,是 Copy-On-Write 的缩写,这是一种是复制但也不完全是复制的技术。 一般来说复制就是创建出完全相同的两份,两份是独立的: 但是,有的时候复制这件事没多大必要
我是一名优秀的程序员,十分优秀!