Skip to content

Commit

Permalink
Formatting etc
Browse files Browse the repository at this point in the history
Co-authored-by: Kyle Daruwalla <[email protected]>
  • Loading branch information
theabhirath and darsnack authored Jun 25, 2022
1 parent a2e2a3d commit 4bb065d
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/convnets/mobilenet.jl
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
mobilenetv1(width_mult, config;
activation = relu,
inchannels = 3,
fcsize = 1024,
nclasses = 1000)
Create a MobileNetv1 model ([reference](https://arxiv.org/abs/1704.04861v1)).
Expand All @@ -27,7 +28,7 @@ Create a MobileNetv1 model ([reference](https://arxiv.org/abs/1704.04861v1)).
function mobilenetv1(width_mult, config;
activation = relu,
inchannels = 3,
fcsize = 1024,
fcsize = 1024,
nclasses = 1000)
layers = []
for (dw, outch, stride, nrepeats) in config
Expand Down

0 comments on commit 4bb065d

Please sign in to comment.