12 lines
227 B
Python
12 lines
227 B
Python
import torch
|
|
|
|
|
|
class ImageNN(torch.nn.Module):
|
|
def __init__(self):
|
|
super().__init__()
|
|
# todo implement the nn structure
|
|
|
|
def forward(self, x: torch.Tensor):
|
|
pass
|
|
# todo implement forward
|