维度的转换?

import torch.nn as nn

import torch

in_dims=3

n_hid=2

ws = torch.nn.ModuleList()

ws.append(nn.Linear(in_dims, n_hid))

print(ws[0])

x = torch.Tensor([[1, 2, 3],
        [4, 5, 6]])

print(ws[0](x))

维度的转换?_第1张图片 

 

 

你可能感兴趣的:(python,深度学习)