2026-03-01 05:01:20 +00:00
|
|
|
# 这是一个示例 Python 脚本。
|
|
|
|
|
|
|
|
|
|
# 按 Shift+F10 执行或将其替换为您的代码。
|
|
|
|
|
# 按 双击 Shift 在所有地方搜索类、文件、工具窗口、操作和设置。
|
2026-03-05 07:31:25 +00:00
|
|
|
import torch
|
|
|
|
|
from torch import nn
|
|
|
|
|
# 按 Ctrl+F8 切换断点。
|
|
|
|
|
class MyDictDense(nn.Module):
|
|
|
|
|
def __init__(self):
|
|
|
|
|
super(MyDictDense, self).__init__()
|
|
|
|
|
self.params = nn.ParameterDict({
|
|
|
|
|
'linear1': nn.Parameter(torch.randn(4, 4)),
|
|
|
|
|
'linear2': nn.Parameter(torch.randn(4, 1))
|
|
|
|
|
})
|
|
|
|
|
self.params.update({'linear3': nn.Parameter(torch.randn(4, 2))}) # 新增
|
2026-03-01 05:01:20 +00:00
|
|
|
|
2026-03-05 07:31:25 +00:00
|
|
|
def forward(self, x, choice='linear1'):
|
|
|
|
|
return torch.mm(x, self.params[choice])
|
2026-03-01 05:01:20 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
# 按装订区域中的绿色按钮以运行脚本。
|
|
|
|
|
if __name__ == '__main__':
|
|
|
|
|
|
2026-03-05 07:31:25 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
net = MyDictDense()
|
|
|
|
|
print(net)
|
2026-03-01 05:01:20 +00:00
|
|
|
# 访问 https://www.jetbrains.com/help/pycharm/ 获取 PyCharm 帮助
|