1 Star 0 Fork 0

Csq/cvpr2020-plant-pathology

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
loss_function.py 473 Bytes
一键复制 编辑 原始数据 按行查看 历史
鲲中 提交于 2020-07-07 14:52 . 优化文件头
# @Author: yican, yelanlan
# @Date: 2020-06-16 20:43:36
# @Last Modified by: yican
# @Last Modified time: 2020-06-14 16:21:14
# Third party libraries
import torch.nn as nn
import torch
class CrossEntropyLossOneHot(nn.Module):
def __init__(self):
super(CrossEntropyLossOneHot, self).__init__()
self.log_softmax = nn.LogSoftmax(dim=-1)
def forward(self, preds, labels):
return torch.mean(torch.sum(-labels * self.log_softmax(preds), -1))
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/C15252488284/cvpr2020-plant-pathology.git
git@gitee.com:C15252488284/cvpr2020-plant-pathology.git
C15252488284
cvpr2020-plant-pathology
cvpr2020-plant-pathology
master

搜索帮助