| NUMBER | LAYER NAME IN CAFFE* | LAYER NAME IN THE INTERMEDIATE REPRESENTATION |
| 1 | Input | Input |
| 2 | GlobalInput | Input |
| 3 | InnerProduct | FullyConnected |
| 4 | Dropout | Ignored, does not appear in IR |
| 5 | Convolution | Convolution |
| 6 | Deconvolution | Deconvolution |
| 7 | Pooling | Pooling |
| 8 | BatchNorm | BatchNormalization |
| 9 | LRN | Norm |
| 10 | Power | Power |
| 11 | ReLU | ReLU |
| 12 | Scale | ScaleShift |
| 13 | Concat | Concat |
| 14 | Eltwise | Eltwise |
| 15 | Flatten | Flatten |
| 16 | Reshape | Reshape |
| 17 | Slice | Slice |
| 18 | Softmax | Softmax |
| 19 | Permute | Permute |
| 20 | ROIPooling | ROIPooling |
| 21 | Tile | Tile |
| 22 | ShuffleChannel | Reshape + Split + Permute + Concat |
| 23 | Axpy | ScaleShift + Eltwise |
| 24 | BN | ScaleShift |
| 25 | DetectionOutput | DetectionOutput |
| 26 | StridedSlice | StridedSlice |
| 27 | Bias | Eltwise(operation = sum) |