ImageImpaint_Python_II/Net.py

12 lines
227 B
Python
Raw Normal View History

2022-06-01 10:27:58 +00:00
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