Skip to content

Commit

Permalink
Merge pull request #210 from sathvikbhagavan/patch-1
Browse files Browse the repository at this point in the history
docs: fix typo in plot
  • Loading branch information
ChrisRackauckas authored Jan 17, 2024
2 parents b31bb18 + 1342023 commit ec8f4d7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/src/showcase/missing_physics.md
Original file line number Diff line number Diff line change
Expand Up @@ -284,7 +284,7 @@ How well did our neural network do? Let's take a look:
pl_losses = plot(1:5000, losses[1:5000], yaxis = :log10, xaxis = :log10,
xlabel = "Iterations", ylabel = "Loss", label = "ADAM", color = :blue)
plot!(5001:length(losses), losses[5001:end], yaxis = :log10, xaxis = :log10,
xlabel = "Iterations", ylabel = "Loss", label = "BFGS", color = :red)
xlabel = "Iterations", ylabel = "Loss", label = "LBFGS", color = :red)
```

Next, we compare the original data to the output of the UDE predictor. Note that we can even create more samples from the underlying model by simply adjusting the time steps!
Expand Down

0 comments on commit ec8f4d7

Please sign in to comment.