作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我想在 pytorch 中实现 tf.nn.in_top_k
。这是tf.nn.in_top_k
的链接,
tf.math.in_top_k(
targets, predictions, k, name=None
)
它将 k 处的精度计算为 bool Tensor,并将返回 bool 类型的 Tensor。
不知道pytorch中有没有类似的api?
最佳答案
据我所知,pytorch 中没有内置等效的 in_top_k
函数。写一个比较简单。例如
def in_top_k(targets, preds, k):
topk = preds.topk(k)[1]
return (targets.unsqueeze(1) == topk).any(dim=1)
关于python - 如何在pytorch中实现tf.nn.top_k,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/64734480/
我是一名优秀的程序员,十分优秀!