| 32 | return x; |
| 33 | } |
| 34 | static VARP convBlocTemp(VARP x, INTS channels, int stride) { |
| 35 | int inputChannel = channels[0], outputChannel = channels[1]; |
| 36 | int group = inputChannel; |
| 37 | x = _Conv(0.002f, 0.0f, x, {inputChannel, inputChannel}, {3, 3}, SAME, {stride, stride}, {1, 1}, inputChannel); |
| 38 | x = _Conv(0.05f, 0.0f, x, {inputChannel, outputChannel}, {1, 1}, SAME, {1, 1}, {1, 1}, 1); |
| 39 | return x; |
| 40 | } |
| 41 | static VARP _mobileNetV1Expr(VARP x = nullptr, bool softmax = true) { |
| 42 | int inputSize = 224, poolSize; // MobileNet_224, MobileNet_192, MobileNet_160, MobileNet_128 |
| 43 | { |
no test coverage detected