Spaces:
Sleeping
Sleeping
File size: 206 Bytes
85e1f14 |
1 2 3 4 5 6 7 8 9 10 11 12 13 |
import torch
import torch.nn as nn
import torch.nn.functional as F
class Identity(nn.Module):
def __init__(self):
super(Identity, self).__init__()
def forward(self, x):
return x
|