Skip to content

Commit 746f01d

Browse files
committed
fix(model):ODE-based models info
1 parent 09a9eda commit 746f01d

File tree

3 files changed

+6
-0
lines changed

3 files changed

+6
-0
lines changed

models/GNeuralFlow.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff 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__()

models/Latent_ODE.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff 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__()

models/NeuralFlows.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff 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__()

0 commit comments

Comments
 (0)