File size: 327 Bytes
31f46ed |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
import torch.nn as nn
import torch
class SimpleModel(nn.Module):
def __init__(self):
super(SimpleModel, self).__init__()
self.fc1 = nn.Linear(784, 128)
self.fc2 = nn.Linear(128, 2)
def forward(self, x):
x = torch.relu(self.fc1(x))
x = self.fc2(x)
return x
|