Skip to content

Commit

Permalink
Update docs/src/workflow examples/Incremental Training.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 640ef2c commit 74e8284
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions docs/src/workflow examples/Incremental Training.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,11 +46,13 @@ curve = learning_curve(
measure=cross_entropy,
)
using Plots
plot(curve.parameter_values,
curve.measurements,
xlab=curve.parameter_name,
xscale=curve.parameter_scale,
ylab = "Cross Entropy")
plot(
curve.parameter_values,
curve.measurements,
xlab=curve.parameter_name,
xscale=curve.parameter_scale,
ylab = "Cross Entropy",
)

```
Expand Down

0 comments on commit 74e8284

Please sign in to comment.