diff --git a/examples/mnist/notebook.jl b/examples/mnist/notebook.jl index 570023fa..da7978d2 100644 --- a/examples/mnist/notebook.jl +++ b/examples/mnist/notebook.jl @@ -142,7 +142,7 @@ fit!(mach, rows=train); predicted_labels = predict(mach, rows=test); cross_entropy(predicted_labels, labels[test]) -# Or, in one line: +# Or to fit and predict, in one line: evaluate!(mach, resampling=Holdout(fraction_train=0.5),