加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
nn_module.py 545 Bytes
一键复制 编辑 原始数据 按行查看 历史
AlbertDarren 提交于 2022-05-12 11:01 . first commit
#!/usr/bin/python3
# -*- coding: utf-8 -*-
"""
@Time : 2022/5/4 15:51
@Author : Albert Darren
@Contact : 2563491540@qq.com
@File : nn_module.py
@Version : Version 1.0.0
@Description : TODO
@Created By : PyCharm
"""
import torch.nn as nn
from torch import tensor
class MyNet(nn.Module):
def __init__(self):
super().__init__()
def forward(self, x):
output = x + 1
return output
my_net = MyNet()
input_tensor = tensor(1.24)
output_tensor = my_net(input_tensor)
print(output_tensor)
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化