Vemund Fredriksen
Add training pipeline (#21)
1cc0005 unverified
raw
history blame
237 Bytes
import torch as T
class Network(T.nn.Module):
def __init__(self):
super(Network, self).__init__()
def forward(self, image, segbox):
pass
def train_step(self, image, segment, criterion, segbox):
pass