Skip to content

Instantly share code, notes, and snippets.

@ugo-nama-kun
Last active February 14, 2022 04:27
Show Gist options
  • Save ugo-nama-kun/23b2cf121a498e9c50b3da5540dbdb11 to your computer and use it in GitHub Desktop.
Save ugo-nama-kun/23b2cf121a498e9c50b3da5540dbdb11 to your computer and use it in GitHub Desktop.
usual torch default importing
import torch
import torch.nn as nn
import torch.nn.functional as F
class Model(nn.Module):
def __init__(self):
super(Model, self).__init__()
self.conv1 = nn.Conv2d(1, 20, 5)
self.conv2 = nn.Conv2d(20, 20, 5)
def forward(self, x):
x = F.relu(self.conv1(x))
return F.relu(self.conv2(x))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment