diff --git a/docs/src/workflow examples/Incremental Training.md b/docs/src/workflow examples/Incremental Training.md index 9f07f808..1e35f347 100644 --- a/docs/src/workflow examples/Incremental Training.md +++ b/docs/src/workflow examples/Incremental Training.md @@ -39,10 +39,12 @@ Chain(Chain(Dense(4, 3, σ), Flux.Dropout{Float64}(0.5, false), Dense(3, 3)), so ```julia r = range(clf, :epochs, lower=1, upper=200, scale=:log10) -curve = learning_curve(clf, X, y, - range=r, - resampling=Holdout(fraction_train=0.7), - measure=cross_entropy) +curve = learning_curve( + clf, X, y; + range=r, + resampling=Holdout(fraction_train=0.7), + measure=cross_entropy, + ) using Plots plot(curve.parameter_values, curve.measurements,