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 2dd1c2a commit 8660d5b
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions docs/src/full tutorials/MNIST.md
Original file line number Diff line number Diff line change
Expand Up @@ -92,8 +92,9 @@ And evaluating the accuracy of the model on a 30% holdout set:
```julia
mach = machine(clf, X, y)

evaluate!(mach,
resampling=Holdout(rng=123, fraction_train=0.7),
operation=predict_mode,
measure=misclassification_rate)
evaluate!(
mach,
resampling=Holdout(rng=123, fraction_train=0.7),
measure=misclassification_rate,
)
```

0 comments on commit 8660d5b

Please sign in to comment.