File size: 246 Bytes
b84549f
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
INPUT = 'input'
OUTPUT = 'output'
CONV3X3_BN_RELU = 'conv3x3-bn-relu'
CONV1X1_BN_RELU = 'conv1x1-bn-relu'
MAXPOOL3X3 = 'maxpool3x3'


LABEL2ID = {
    INPUT: -1,
    OUTPUT: -2,
    CONV3X3_BN_RELU: 0,
    CONV1X1_BN_RELU: 1,
    MAXPOOL3X3: 2
}