File size: 237 Bytes
1cc0005
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
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