1 Star 0 Fork 0

hellozahn/ai_ftc

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
net.py 760 Bytes
一键复制 编辑 原始数据 按行查看 历史
hellozahn 提交于 2024-02-02 15:54 . 调整参数对比可视化结果
import torch
from torch import nn
class Net(nn.Module):
def __init__(self):
super().__init__()
self.fc = nn.Sequential(
nn.Linear(100 * 100 * 3, 784),
nn.PReLU(),
nn.Linear(784, 256),
nn.PReLU(),
nn.Linear(256, 128),
nn.PReLU(),
nn.Linear(128, 64),
nn.PReLU(),
nn.Linear(64, 32),
nn.PReLU(),
nn.Linear(32, 3),
# 损失函数是交叉熵去掉softmax
# nn.Softmax(dim=1)
)
def forward(self, _x):
return self.fc(_x)
if __name__ == '__main__':
x = torch.randn(2, 100 * 100 * 3)
net = Net()
out = net(x)
print(out.shape)
# print(out)
pass
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Python
1
https://gitee.com/hellozahn/ai_items.git
git@gitee.com:hellozahn/ai_items.git
hellozahn
ai_items
ai_ftc
dev

搜索帮助