We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a2e2a3d commit 4bb065dCopy full SHA for 4bb065d
src/convnets/mobilenet.jl
@@ -4,6 +4,7 @@
4
mobilenetv1(width_mult, config;
5
activation = relu,
6
inchannels = 3,
7
+ fcsize = 1024,
8
nclasses = 1000)
9
10
Create a MobileNetv1 model ([reference](https://arxiv.org/abs/1704.04861v1)).
@@ -27,7 +28,7 @@ Create a MobileNetv1 model ([reference](https://arxiv.org/abs/1704.04861v1)).
27
28
function mobilenetv1(width_mult, config;
29
30
- fcsize = 1024,
31
32
33
layers = []
34
for (dw, outch, stride, nrepeats) in config
0 commit comments