aaa / LLMatic-main /initial_net.py
Ahmed-Salah's picture
Upload 57 files
d625688 verified
raw
history blame contribute delete
371 Bytes
import torch
import torch.nn as nn
import torch.nn.functional as F
class Net(nn.Module):
def __init__(self):
super().__init__()
self.conv1 = nn.Conv2d(3, 1, 1)
self.fc1 = nn.Linear(1024, 10)
def forward(self, x):
x = F.relu(self.conv1(x))
x = torch.flatten(x, 1)
x = F.relu(self.fc1(x))
return x