You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hello, thanks a lot for your hard work and your sharing.
I would like to ask why two optimizers are needed during the training. self.optimizer.step(self.loss_func) self.optimizer_Adam.step()
Thank you so much in advance for your answers.
The text was updated successfully, but these errors were encountered:
The original PINN uses two optimizers, Adam for initial optimization since it is generally more stable, and later use second order optimizer LBFGS for finetuning to reach higher accuracy.
Hello, thanks a lot for your hard work and your sharing.
I would like to ask why two optimizers are needed during the training.
self.optimizer.step(self.loss_func)
self.optimizer_Adam.step()
Thank you so much in advance for your answers.
The text was updated successfully, but these errors were encountered: