加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
test.py 289 Bytes
一键复制 编辑 原始数据 按行查看 历史
yanzhenxing123 提交于 2023-11-16 09:02 . feat: some task05 codes
import torch
import torch.nn.functional as F
# 模拟神经网络的输出,假设有三个类别
logits = torch.tensor([[1.0, 1, 1.0]])
# 使用 F.softmax 将输出转换为概率分布
probabilities = F.softmax(logits, dim=0)
print("Softmax probabilities:", probabilities)
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化