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
Hi, my time series have many features and each of them is observed at different times. How can I use latent-ode here to learn from such data? It seems the current collate_fn can be used for time series with different observation times but in each time, it assumes all the features are observed (but in my case, some features are missing while others are observed in one time series).
Can I just use the predicted values of unobserved features from the ode forward (i.e. x(t) = ODEsolver(neural_net, y0, time at the next observation) and set x_unobserved = x[index of unobserved features] ), and update the state by GRU using x(t) = [x_observe at t, x_unobserved at t] as the input to the GRU.
Please suggest.
Thank you.
The text was updated successfully, but these errors were encountered:
我是否可以只使用 ode 向前的未观察到特征的预测值(即 x(t) = ODEsolver(neural_net, y0, time at the next observation) 并设置 x_unobserved = x[未观察到特征的索引]),并使用 x(t) = [x_observe at t, x_unobserved at t] 作为 GRU 的输入来更新 GRU 的状态。
请建议。
谢谢。
Hello, may I ask if you have any dependencies to run this code and if there are any files similar to "requirements. txt"
Hi, my time series have many features and each of them is observed at different times. How can I use latent-ode here to learn from such data? It seems the current collate_fn can be used for time series with different observation times but in each time, it assumes all the features are observed (but in my case, some features are missing while others are observed in one time series).
Can I just use the predicted values of unobserved features from the ode forward (i.e. x(t) = ODEsolver(neural_net, y0, time at the next observation) and set x_unobserved = x[index of unobserved features] ), and update the state by GRU using x(t) = [x_observe at t, x_unobserved at t] as the input to the GRU.
Please suggest.
Thank you.
The text was updated successfully, but these errors were encountered: