kalmanformer 0.0.1__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,209 @@
1
+ *.sh
2
+
3
+ # Byte-compiled / optimized / DLL files
4
+ __pycache__/
5
+ *.py[codz]
6
+ *$py.class
7
+
8
+ # C extensions
9
+ *.so
10
+
11
+ # Distribution / packaging
12
+ .Python
13
+ build/
14
+ develop-eggs/
15
+ dist/
16
+ downloads/
17
+ eggs/
18
+ .eggs/
19
+ lib/
20
+ lib64/
21
+ parts/
22
+ sdist/
23
+ var/
24
+ wheels/
25
+ share/python-wheels/
26
+ *.egg-info/
27
+ .installed.cfg
28
+ *.egg
29
+ MANIFEST
30
+
31
+ # PyInstaller
32
+ # Usually these files are written by a python script from a template
33
+ # before PyInstaller builds the exe, so as to inject date/other infos into it.
34
+ *.manifest
35
+ *.spec
36
+
37
+ # Installer logs
38
+ pip-log.txt
39
+ pip-delete-this-directory.txt
40
+
41
+ # Unit test / coverage reports
42
+ htmlcov/
43
+ .tox/
44
+ .nox/
45
+ .coverage
46
+ .coverage.*
47
+ .cache
48
+ nosetests.xml
49
+ coverage.xml
50
+ *.cover
51
+ *.py.cover
52
+ .hypothesis/
53
+ .pytest_cache/
54
+ cover/
55
+
56
+ # Translations
57
+ *.mo
58
+ *.pot
59
+
60
+ # Django stuff:
61
+ *.log
62
+ local_settings.py
63
+ db.sqlite3
64
+ db.sqlite3-journal
65
+
66
+ # Flask stuff:
67
+ instance/
68
+ .webassets-cache
69
+
70
+ # Scrapy stuff:
71
+ .scrapy
72
+
73
+ # Sphinx documentation
74
+ docs/_build/
75
+
76
+ # PyBuilder
77
+ .pybuilder/
78
+ target/
79
+
80
+ # Jupyter Notebook
81
+ .ipynb_checkpoints
82
+
83
+ # IPython
84
+ profile_default/
85
+ ipython_config.py
86
+
87
+ # pyenv
88
+ # For a library or package, you might want to ignore these files since the code is
89
+ # intended to run in multiple environments; otherwise, check them in:
90
+ # .python-version
91
+
92
+ # pipenv
93
+ # According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
94
+ # However, in case of collaboration, if having platform-specific dependencies or dependencies
95
+ # having no cross-platform support, pipenv may install dependencies that don't work, or not
96
+ # install all needed dependencies.
97
+ #Pipfile.lock
98
+
99
+ # UV
100
+ # Similar to Pipfile.lock, it is generally recommended to include uv.lock in version control.
101
+ # This is especially recommended for binary packages to ensure reproducibility, and is more
102
+ # commonly ignored for libraries.
103
+ #uv.lock
104
+
105
+ # poetry
106
+ # Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control.
107
+ # This is especially recommended for binary packages to ensure reproducibility, and is more
108
+ # commonly ignored for libraries.
109
+ # https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control
110
+ #poetry.lock
111
+ #poetry.toml
112
+
113
+ # pdm
114
+ # Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control.
115
+ # pdm recommends including project-wide configuration in pdm.toml, but excluding .pdm-python.
116
+ # https://pdm-project.org/en/latest/usage/project/#working-with-version-control
117
+ #pdm.lock
118
+ #pdm.toml
119
+ .pdm-python
120
+ .pdm-build/
121
+
122
+ # pixi
123
+ # Similar to Pipfile.lock, it is generally recommended to include pixi.lock in version control.
124
+ #pixi.lock
125
+ # Pixi creates a virtual environment in the .pixi directory, just like venv module creates one
126
+ # in the .venv directory. It is recommended not to include this directory in version control.
127
+ .pixi
128
+
129
+ # PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm
130
+ __pypackages__/
131
+
132
+ # Celery stuff
133
+ celerybeat-schedule
134
+ celerybeat.pid
135
+
136
+ # SageMath parsed files
137
+ *.sage.py
138
+
139
+ # Environments
140
+ .env
141
+ .envrc
142
+ .venv
143
+ env/
144
+ venv/
145
+ ENV/
146
+ env.bak/
147
+ venv.bak/
148
+
149
+ # Spyder project settings
150
+ .spyderproject
151
+ .spyproject
152
+
153
+ # Rope project settings
154
+ .ropeproject
155
+
156
+ # mkdocs documentation
157
+ /site
158
+
159
+ # mypy
160
+ .mypy_cache/
161
+ .dmypy.json
162
+ dmypy.json
163
+
164
+ # Pyre type checker
165
+ .pyre/
166
+
167
+ # pytype static type analyzer
168
+ .pytype/
169
+
170
+ # Cython debug symbols
171
+ cython_debug/
172
+
173
+ # PyCharm
174
+ # JetBrains specific template is maintained in a separate JetBrains.gitignore that can
175
+ # be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore
176
+ # and can be added to the global gitignore or merged into this file. For a more nuclear
177
+ # option (not recommended) you can uncomment the following to ignore the entire idea folder.
178
+ #.idea/
179
+
180
+ # Abstra
181
+ # Abstra is an AI-powered process automation framework.
182
+ # Ignore directories containing user credentials, local state, and settings.
183
+ # Learn more at https://abstra.io/docs
184
+ .abstra/
185
+
186
+ # Visual Studio Code
187
+ # Visual Studio Code specific template is maintained in a separate VisualStudioCode.gitignore
188
+ # that can be found at https://github.com/github/gitignore/blob/main/Global/VisualStudioCode.gitignore
189
+ # and can be added to the global gitignore or merged into this file. However, if you prefer,
190
+ # you could uncomment the following to ignore the entire vscode folder
191
+ # .vscode/
192
+
193
+ # Ruff stuff:
194
+ .ruff_cache/
195
+
196
+ # PyPI configuration file
197
+ .pypirc
198
+
199
+ # Cursor
200
+ # Cursor is an AI-powered code editor. `.cursorignore` specifies files/directories to
201
+ # exclude from AI features like autocomplete and code analysis. Recommended for sensitive data
202
+ # refer to https://docs.cursor.com/context/ignore-files
203
+ .cursorignore
204
+ .cursorindexingignore
205
+
206
+ # Marimo
207
+ marimo/_static/
208
+ marimo/_lsp/
209
+ __marimo__/
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2026 Phil Wang
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
@@ -0,0 +1,114 @@
1
+ Metadata-Version: 2.4
2
+ Name: kalmanformer
3
+ Version: 0.0.1
4
+ Summary: KalmanFormer - using transformer to model the Kalman Gain in Kalman Filters
5
+ Project-URL: Homepage, https://pypi.org/project/kalmanformer/
6
+ Project-URL: Repository, https://codeberg.org/lucidrains/kalmanformer
7
+ Author-email: Phil Wang <lucidrains@gmail.com>
8
+ License: MIT License
9
+
10
+ Copyright (c) 2026 Phil Wang
11
+
12
+ Permission is hereby granted, free of charge, to any person obtaining a copy
13
+ of this software and associated documentation files (the "Software"), to deal
14
+ in the Software without restriction, including without limitation the rights
15
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
16
+ copies of the Software, and to permit persons to whom the Software is
17
+ furnished to do so, subject to the following conditions:
18
+
19
+ The above copyright notice and this permission notice shall be included in all
20
+ copies or substantial portions of the Software.
21
+
22
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
23
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
24
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
25
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
26
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
27
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
28
+ SOFTWARE.
29
+ License-File: LICENSE
30
+ Keywords: artificial intelligence,deep learning,kalman filter,state estimation,transformers
31
+ Classifier: Development Status :: 4 - Beta
32
+ Classifier: Intended Audience :: Developers
33
+ Classifier: License :: OSI Approved :: MIT License
34
+ Classifier: Programming Language :: Python :: 3.10
35
+ Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
36
+ Requires-Python: >=3.10
37
+ Requires-Dist: einops>=0.8.0
38
+ Requires-Dist: torch>=2.0
39
+ Requires-Dist: x-mlps-pytorch>=0.2.8
40
+ Requires-Dist: x-transformers>=2.19.7
41
+ Provides-Extra: examples
42
+ Provides-Extra: test
43
+ Requires-Dist: pytest; extra == 'test'
44
+ Description-Content-Type: text/markdown
45
+
46
+ <img src="./kalmanformer.png" width="400px"></img>
47
+
48
+ ## KalmanFormer
49
+
50
+ Implementation of <a href="https://www.frontiersin.org/articles/10.3389/fnbot.2024.1460255/full">KalmanFormer</a>.
51
+
52
+ The paper proposes learning the Kalman Gain directly from data using Transformers, bypassing the limitations of traditional Kalman Filters on non-linear systems.
53
+
54
+ ## Install
55
+
56
+ ```bash
57
+ $ pip install kalmanformer
58
+ ```
59
+
60
+ ## Usage
61
+
62
+ ```python
63
+ import torch
64
+ from kalmanformer import KalmanFormer
65
+
66
+ # kalmanformer
67
+
68
+ kalmanformer = KalmanFormer(
69
+ state_dim = 3,
70
+ obs_dim = 3,
71
+ dim = 64,
72
+ depth = 2,
73
+ heads = 2,
74
+ dim_head = 32,
75
+ mlp_dim = 64
76
+ )
77
+
78
+ # mock observations
79
+
80
+ observations = torch.randn(2, 10, 3)
81
+
82
+ # state transition matrix f and observation matrix h
83
+
84
+ F = torch.randn(3, 3)
85
+ H = torch.randn(3, 3)
86
+
87
+ # initial state
88
+
89
+ x_0 = torch.zeros(2, 3)
90
+
91
+ # tracking over sequence
92
+
93
+ post_states = kalmanformer(
94
+ observations,
95
+ F,
96
+ H,
97
+ x_0 = x_0
98
+ )
99
+
100
+ assert post_states.shape == (2, 10, 3)
101
+ ```
102
+
103
+ ## Citations
104
+
105
+ ```bibtex
106
+ @article{Shen2025KalmanFormer,
107
+ title = {KalmanFormer: using transformer to model the Kalman Gain in Kalman Filters},
108
+ author = {Siyuan Shen and Jichen Chen and Guanfeng Yu and Zhengjun Zhai and Pujie Han},
109
+ journal = {Frontiers in Neurorobotics},
110
+ year = {2025},
111
+ volume = {18},
112
+ doi = {10.3389/fnbot.2024.1460255}
113
+ }
114
+ ```
@@ -0,0 +1,69 @@
1
+ <img src="./kalmanformer.png" width="400px"></img>
2
+
3
+ ## KalmanFormer
4
+
5
+ Implementation of <a href="https://www.frontiersin.org/articles/10.3389/fnbot.2024.1460255/full">KalmanFormer</a>.
6
+
7
+ The paper proposes learning the Kalman Gain directly from data using Transformers, bypassing the limitations of traditional Kalman Filters on non-linear systems.
8
+
9
+ ## Install
10
+
11
+ ```bash
12
+ $ pip install kalmanformer
13
+ ```
14
+
15
+ ## Usage
16
+
17
+ ```python
18
+ import torch
19
+ from kalmanformer import KalmanFormer
20
+
21
+ # kalmanformer
22
+
23
+ kalmanformer = KalmanFormer(
24
+ state_dim = 3,
25
+ obs_dim = 3,
26
+ dim = 64,
27
+ depth = 2,
28
+ heads = 2,
29
+ dim_head = 32,
30
+ mlp_dim = 64
31
+ )
32
+
33
+ # mock observations
34
+
35
+ observations = torch.randn(2, 10, 3)
36
+
37
+ # state transition matrix f and observation matrix h
38
+
39
+ F = torch.randn(3, 3)
40
+ H = torch.randn(3, 3)
41
+
42
+ # initial state
43
+
44
+ x_0 = torch.zeros(2, 3)
45
+
46
+ # tracking over sequence
47
+
48
+ post_states = kalmanformer(
49
+ observations,
50
+ F,
51
+ H,
52
+ x_0 = x_0
53
+ )
54
+
55
+ assert post_states.shape == (2, 10, 3)
56
+ ```
57
+
58
+ ## Citations
59
+
60
+ ```bibtex
61
+ @article{Shen2025KalmanFormer,
62
+ title = {KalmanFormer: using transformer to model the Kalman Gain in Kalman Filters},
63
+ author = {Siyuan Shen and Jichen Chen and Guanfeng Yu and Zhengjun Zhai and Pujie Han},
64
+ journal = {Frontiers in Neurorobotics},
65
+ year = {2025},
66
+ volume = {18},
67
+ doi = {10.3389/fnbot.2024.1460255}
68
+ }
69
+ ```
@@ -0,0 +1 @@
1
+ from kalmanformer.kalmanformer import KalmanFormer
@@ -0,0 +1,182 @@
1
+ import torch
2
+ from torch import nn, einsum, stack
3
+ from torch.nn import Module
4
+
5
+ from einops import rearrange, pack
6
+
7
+ from x_transformers import Encoder, Decoder
8
+ from x_mlps_pytorch import create_mlp
9
+
10
+ # helper functions
11
+
12
+ def exists(v):
13
+ return v is not None
14
+
15
+ def default(v, d):
16
+ return v if exists(v) else d
17
+
18
+ # main class
19
+
20
+ class KalmanFormer(Module):
21
+ def __init__(
22
+ self,
23
+ *,
24
+ state_dim,
25
+ obs_dim,
26
+ dim = 64,
27
+ depth = 2,
28
+ heads = 2,
29
+ dim_head = 32,
30
+ ff_mult = 1,
31
+ mlp_depth = 2,
32
+ mlp_dim = 64,
33
+ enc_kwargs: dict = dict(),
34
+ dec_kwargs: dict = dict(),
35
+ learn_dynamics: bool = False
36
+ ):
37
+ super().__init__()
38
+ self.state_dim = state_dim
39
+ self.obs_dim = obs_dim
40
+ self.learn_dynamics = learn_dynamics
41
+
42
+ if learn_dynamics:
43
+ self.learned_F = create_mlp(
44
+ dim = dim,
45
+ depth = 2,
46
+ dim_in = state_dim,
47
+ dim_out = state_dim
48
+ )
49
+ self.learned_H = nn.Linear(state_dim, obs_dim, bias=False)
50
+
51
+ self.proj_obs_diff = nn.Linear(obs_dim, dim)
52
+ self.proj_innov_diff = nn.Linear(obs_dim, dim)
53
+
54
+ self.proj_state_evol_diff = nn.Linear(state_dim, dim)
55
+ self.proj_state_upd_diff = nn.Linear(state_dim, dim)
56
+
57
+ self.encoder = Encoder(
58
+ dim = dim,
59
+ depth = depth,
60
+ heads = heads,
61
+ attn_dim_head = dim_head,
62
+ ff_mult = ff_mult,
63
+ verbose = False,
64
+ **enc_kwargs
65
+ )
66
+
67
+ self.decoder = Decoder(
68
+ dim = dim,
69
+ depth = depth,
70
+ heads = heads,
71
+ attn_dim_head = dim_head,
72
+ cross_attend = True,
73
+ ff_mult = ff_mult,
74
+ verbose = False,
75
+ **dec_kwargs
76
+ )
77
+
78
+ self.to_kalman_gain = create_mlp(
79
+ dim = mlp_dim,
80
+ depth = mlp_depth,
81
+ dim_in = dim * 2,
82
+ dim_out = state_dim * obs_dim
83
+ )
84
+
85
+ nn.init.zeros_(self.to_kalman_gain.layers[-1].weight)
86
+ nn.init.zeros_(self.to_kalman_gain.layers[-1].bias)
87
+
88
+ def step(
89
+ self,
90
+ z_k, # (b, obs_dim)
91
+ z_prev, # (b, obs_dim)
92
+ x_prev_post, # (b, state_dim)
93
+ x_prev_prior, # (b, state_dim)
94
+ F_k, # (b, state_dim, state_dim)
95
+ H_k # (b, obs_dim, state_dim)
96
+ ):
97
+ if exists(F_k):
98
+ if F_k.ndim == 2:
99
+ F_k = rearrange(F_k, 'i j -> 1 i j')
100
+ x_prior = einsum('b i j, b j -> b i', F_k, x_prev_post)
101
+ else:
102
+ x_prior = self.learned_F(x_prev_post)
103
+
104
+ if exists(H_k):
105
+ if H_k.ndim == 2:
106
+ H_k = rearrange(H_k, 'i j -> 1 i j')
107
+ z_prior = einsum('b i j, b j -> b i', H_k, x_prior)
108
+ else:
109
+ z_prior = self.learned_H(x_prior)
110
+
111
+ obs_diff = z_k - z_prev
112
+ innov_diff = z_k - z_prior
113
+ state_evol_diff = x_prior - x_prev_post
114
+ state_upd_diff = x_prev_post - x_prev_prior
115
+
116
+ token_obs_diff = self.proj_obs_diff(obs_diff)
117
+ token_innov_diff = self.proj_innov_diff(innov_diff)
118
+
119
+ token_state_evol_diff = self.proj_state_evol_diff(state_evol_diff)
120
+ token_state_upd_diff = self.proj_state_upd_diff(state_upd_diff)
121
+
122
+ enc_in, _ = pack([token_obs_diff, token_innov_diff], 'b * d')
123
+ enc_out = self.encoder(enc_in)
124
+
125
+ dec_in, _ = pack([token_state_evol_diff, token_state_upd_diff], 'b * d')
126
+ dec_out = self.decoder(dec_in, context = enc_out)
127
+
128
+ dec_flat = rearrange(dec_out, 'b n d -> b (n d)')
129
+
130
+ K_k_flat = self.to_kalman_gain(dec_flat)
131
+ K_k = rearrange(K_k_flat, 'b (i j) -> b i j', i = self.state_dim, j = self.obs_dim)
132
+
133
+ innovation = z_k - z_prior
134
+ update = einsum('b i j, b j -> b i', K_k, innovation)
135
+ x_post = x_prior + update
136
+
137
+ return x_post, x_prior, K_k
138
+
139
+ def forward(
140
+ self,
141
+ observations, # (b, seq, obs_dim)
142
+ F, # (state_dim, state_dim) or (b, seq, state_dim, state_dim)
143
+ H, # (obs_dim, state_dim) or (b, seq, obs_dim, state_dim)
144
+ x_0 = None # (b, state_dim)
145
+ ):
146
+ b, seq_len, _, device = *observations.shape, observations.device
147
+
148
+ x_prev_post = default(x_0, torch.zeros(b, self.state_dim, device = device))
149
+ x_prev_prior = x_prev_post.clone()
150
+
151
+ if exists(H):
152
+ if H.ndim == 4:
153
+ z_prev = einsum('b i j, b j -> b i', H[:, 0], x_prev_post)
154
+ else:
155
+ z_prev = einsum('i j, b j -> b i', H, x_prev_post)
156
+ else:
157
+ z_prev = self.learned_H(x_prev_post)
158
+
159
+ post_states = []
160
+
161
+ for k in range(seq_len):
162
+ z_k = observations[:, k]
163
+
164
+ F_k = H_k = None
165
+
166
+ if exists(F):
167
+ F_k = F[:, k] if F.ndim == 4 else F
168
+
169
+ if exists(H):
170
+ H_k = H[:, k] if H.ndim == 4 else H
171
+
172
+ x_post, x_prior, K_k = self.step(
173
+ z_k, z_prev, x_prev_post, x_prev_prior, F_k, H_k
174
+ )
175
+
176
+ post_states.append(x_post)
177
+
178
+ z_prev = z_k
179
+ x_prev_post = x_post
180
+ x_prev_prior = x_prior
181
+
182
+ return stack(post_states, dim = 1)
@@ -0,0 +1,69 @@
1
+ [project]
2
+ name = "kalmanformer"
3
+ version = "0.0.1"
4
+ description = "KalmanFormer - using transformer to model the Kalman Gain in Kalman Filters"
5
+ authors = [
6
+ { name = "Phil Wang", email = "lucidrains@gmail.com" }
7
+ ]
8
+ readme = "README.md"
9
+ requires-python = ">= 3.10"
10
+ license = { file = "LICENSE" }
11
+ keywords = [
12
+ 'artificial intelligence',
13
+ 'deep learning',
14
+ 'transformers',
15
+ 'kalman filter',
16
+ 'state estimation'
17
+ ]
18
+
19
+ classifiers=[
20
+ 'Development Status :: 4 - Beta',
21
+ 'Intended Audience :: Developers',
22
+ 'Topic :: Scientific/Engineering :: Artificial Intelligence',
23
+ 'License :: OSI Approved :: MIT License',
24
+ 'Programming Language :: Python :: 3.10',
25
+ ]
26
+
27
+ dependencies = [
28
+ "einops>=0.8.0",
29
+ "torch>=2.0",
30
+ "x-mlps-pytorch>=0.2.8",
31
+ "x-transformers>=2.19.7"
32
+ ]
33
+
34
+ [project.urls]
35
+ Homepage = "https://pypi.org/project/kalmanformer/"
36
+ Repository = "https://codeberg.org/lucidrains/kalmanformer"
37
+
38
+ [project.optional-dependencies]
39
+ examples = []
40
+ test = [
41
+ "pytest"
42
+ ]
43
+
44
+ [tool.pytest.ini_options]
45
+ pythonpath = [
46
+ "."
47
+ ]
48
+
49
+ [build-system]
50
+ requires = ["hatchling"]
51
+ build-backend = "hatchling.build"
52
+
53
+ [tool.rye]
54
+ managed = true
55
+ dev-dependencies = []
56
+
57
+ [tool.hatch.metadata]
58
+ allow-direct-references = true
59
+
60
+ [tool.hatch.build]
61
+ include = [
62
+ "kalmanformer",
63
+ "pyproject.toml",
64
+ "README.md",
65
+ "LICENSE"
66
+ ]
67
+
68
+ [tool.hatch.build.targets.wheel]
69
+ packages = ["kalmanformer"]