python 无法从“torchmetrics.functional”导入名称“f1

wztqucjr  于 2022-12-21  发布在  Python
关注(0)|答案(1)|浏览(529)
from torchmetrics.functional import f1

我在尝试从torchmetrics模块导入f1时遇到以下错误。

我安装了torchmetrics模块如下:

!pip install torchmetrics

但问题依然存在。

zte4gxcn

zte4gxcn1#

也许这段代码会有所帮助

from torchmetrics import F1Score
target = torch.tensor([0, 1, 2, 0, 1, 2])
preds = torch.tensor([0, 2, 1, 0, 0, 1])
f1 = F1Score(num_classes=3)
f1(preds, target)```

相关问题