Replies: 1 comment 2 replies
-
|
Normalize the parameters w0 and k. |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
To better explain the problem I’d like to solve, I implemented two pendulums coupled by a spring. By using the analytical expressions, I generated the external data with 20 points equally distributed. The goal is to determine the oscillation frequency w0 and the spring constant k using the PINN-inverse method. When I use the time t between [0,1] and parameters w0=12 and k=3 to generate the data, the code works perfectly to predict these parameters.
However, if I increase the parameters by a factor of 10, the loss function doesn’t reach a small value and the determination of the parameters w0 and k is poor.
If I also rescale the time properly, e.g., t between [0,1/10]. In this case, physically I would have the same problem as before, where w0=12, k=3, and t between [0,1].
I tested this problem with the proper factors but with no success.
I believe that I need to rescale the results of the neural network or something like that, but I don’t know how to properly do it. Can anybody help me?
Beta Was this translation helpful? Give feedback.
All reactions