File tree Expand file tree Collapse file tree 3 files changed +6
-0
lines changed
Expand file tree Collapse file tree 3 files changed +6
-0
lines changed Original file line number Diff line number Diff line change @@ -21,6 +21,8 @@ class Model(nn.Module):
2121 - paper: "Graph Neural Flows for Unveiling Systemic Interactions Among Irregularly Sampled Time Series" (NeurIPS 2024)
2222 - paper link: https://openreview.net/forum?id=tFB5SsabVb
2323 - Code adapted from: https://github.com/gmerca/GNeuralFlow
24+
25+ Note: PyOmniTS has optimized its implementation for speed.
2426 '''
2527 def __init__ (self , configs : ExpConfigs ):
2628 super (Model , self ).__init__ ()
Original file line number Diff line number Diff line change @@ -19,6 +19,8 @@ class Model(nn.Module):
1919 - paper: "Latent Ordinary Differential Equations for Irregularly-Sampled Time Series" (NeurIPS 2019)
2020 - paper link: https://papers.nips.cc/paper_files/paper/2019/hash/42a6845a557bef704ad8ac9cb4461d43-Abstract.html
2121 - Code adapted from: https://github.com/YuliaRubanova/latent_ode
22+
23+ Note: PyOmniTS has optimized its implementation for speed.
2224 '''
2325 def __init__ (self , configs : ExpConfigs ):
2426 super (Model , self ).__init__ ()
Original file line number Diff line number Diff line change @@ -21,6 +21,8 @@ class Model(nn.Module):
2121 - paper: "Neural Flows: Efficient Alternative to Neural ODEs" (NeurIPS 2021)
2222 - paper link: https://proceedings.neurips.cc/paper/2021/hash/b21f9f98829dea9a48fd8aaddc1f159d-Abstract.html
2323 - Code adapted from: https://github.com/mbilos/neural-flows-experiments
24+
25+ Note: PyOmniTS has optimized its implementation for speed.
2426 '''
2527 def __init__ (self , configs : ExpConfigs ):
2628 super (Model , self ).__init__ ()
You can’t perform that action at this time.
0 commit comments