From 23668405b14a9727d29b115e1f1b82c198c758c7 Mon Sep 17 00:00:00 2001 From: Kirill Zubov Date: Thu, 5 Sep 2024 18:21:34 +0400 Subject: [PATCH] Update docs/src/tutorials/pino_ode.md Co-authored-by: Sathvik Bhagavan <35105271+sathvikbhagavan@users.noreply.github.com> --- docs/src/tutorials/pino_ode.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/src/tutorials/pino_ode.md b/docs/src/tutorials/pino_ode.md index f20090d3b..98c0fba26 100644 --- a/docs/src/tutorials/pino_ode.md +++ b/docs/src/tutorials/pino_ode.md @@ -38,7 +38,7 @@ strategy = StochasticTraining(60) opt = OptimizationOptimisers.Adam(0.03) alg = PINOODE(deeponet, opt, bounds, number_of_parameters; strategy = strategy) # Solve the ODE problem using the PINOODE algorithm -sol = solve(prob, alg, verbose = true, maxiters = 3000) +sol = solve(prob, alg, verbose = false, maxiters = 3000) ``` Now let's compare the prediction from the learned operator with the ground truth solution which is obtained by analytic solution of the parametric ODE.