Using one model to predict a parameter and then solving the equation #1040
Unanswered
camillae00
asked this question in
Q&A
Replies: 1 comment
-
|
You can treat k(t) as another state variable, but I am not very sure. |
Beta Was this translation helpful? Give feedback.
0 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.
-
Suppose I have a dataset containing measurements of$\theta$ . I know that the system which I have measured can be described by the following ODE:
where$A$ , $B$ and $C$ are constants (I have simplified it for the sake of clarity).
In the dataset I have$n$ fixed-length time series containing measurements of $\theta$ , which are all described by the aforementioned ODE, but $k(t)$ is different for each of the time series.
Now, I could train a "standard" PINN-model with DeepXDE for all$n$ time series individually. I have tried this and it works well, but then I am left with $n$ different models, and in my case $n$ is on the order of thousands, so not very practical.
Is there a way to do this by only training one large model which after training ca be used as model.predict(x_n, t) and then output$\theta_n$ ?
I hope I managed to state my problem somewhat clearly.
Beta Was this translation helpful? Give feedback.
All reactions