blob: 68fbe3769650cce63020c44abf0c73230748373f [file] [log] [blame]
import torch.nn as nn
class Net(nn.Module):
def __init__(self):
super(Net, self).__init__()
self.linear = nn.Linear(10, 20)