摘要: import torch import torch.nn as nn import torch.nn.functional as F 模拟的输入x变量:4分类问题 batch_size, n_classes = 10, 4 x = torch.randn(batch_size, n_classes) 阅读全文
posted @ 2023-01-27 13:52 SXQ-BLOG 阅读(133) 评论(0) 推荐(0)