Skip to content

Commit

Permalink
Update docs/src/full tutorials/MNIST.md
Browse files Browse the repository at this point in the history
Co-authored-by: Anthony Blaom, PhD <[email protected]>
  • Loading branch information
EssamWisam and ablaom authored May 24, 2024
1 parent 74e8284 commit 5cc3dcd
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions docs/src/full tutorials/MNIST.md
Original file line number Diff line number Diff line change
Expand Up @@ -79,9 +79,11 @@ Instantiating an image classifier model:

```julia
ImageClassifier = @load ImageClassifier
clf = ImageClassifier(builder=MyConvBuilder(3, 16, 32, 32),
epochs=10,
loss=Flux.crossentropy)
clf = ImageClassifier(
builder=MyConvBuilder(3, 16, 32, 32),
epochs=10,
loss=Flux.crossentropy,
)
```

And evaluating the accuracy of the model on a 30% holdout set:
Expand Down

0 comments on commit 5cc3dcd

Please sign in to comment.