chaotax 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,36 @@
1
+ name: Docs
2
+
3
+ on:
4
+ push:
5
+ branches: [main]
6
+ pull_request:
7
+
8
+ jobs:
9
+ build:
10
+ runs-on: ubuntu-latest
11
+ steps:
12
+ - uses: actions/checkout@v4
13
+ - uses: actions/setup-python@v5
14
+ with:
15
+ python-version: "3.12"
16
+ - run: sudo apt-get install -y pandoc
17
+ - run: pip install -e ".[docs]"
18
+ - run: sphinx-build docs docs/_build -W --keep-going
19
+ - uses: actions/upload-pages-artifact@v3
20
+ if: github.ref == 'refs/heads/main'
21
+ with:
22
+ path: docs/_build
23
+
24
+ deploy:
25
+ if: github.ref == 'refs/heads/main'
26
+ needs: build
27
+ runs-on: ubuntu-latest
28
+ permissions:
29
+ pages: write
30
+ id-token: write
31
+ environment:
32
+ name: github-pages
33
+ url: ${{ steps.deploy.outputs.page_url }}
34
+ steps:
35
+ - id: deploy
36
+ uses: actions/deploy-pages@v4
@@ -0,0 +1,16 @@
1
+ name: Lint
2
+
3
+ on:
4
+ push:
5
+ branches: [main]
6
+ pull_request:
7
+
8
+ jobs:
9
+ pre-commit:
10
+ runs-on: ubuntu-latest
11
+ steps:
12
+ - uses: actions/checkout@v4
13
+ - uses: actions/setup-python@v5
14
+ with:
15
+ python-version: "3.12"
16
+ - uses: pre-commit/action@v3.0.1
@@ -0,0 +1,71 @@
1
+ name: Publish Python Package
2
+
3
+ on:
4
+ release:
5
+ types: [published]
6
+ workflow_dispatch:
7
+
8
+ permissions:
9
+ contents: read
10
+
11
+ jobs:
12
+ test:
13
+ runs-on: ubuntu-latest
14
+ strategy:
15
+ matrix:
16
+ python-version: ['3.10', '3.11', '3.12']
17
+ steps:
18
+ - uses: actions/checkout@v4
19
+ - name: Set up Python ${{ matrix.python-version }}
20
+ uses: actions/setup-python@v5
21
+ with:
22
+ python-version: ${{ matrix.python-version }}
23
+ cache: pip
24
+ cache-dependency-path: pyproject.toml
25
+ - name: Install dependencies
26
+ run: |
27
+ python -m pip install --upgrade pip
28
+ python -m pip install ".[test]"
29
+ - name: Run tests
30
+ run: |
31
+ python -m pytest tests/
32
+
33
+ build:
34
+ runs-on: ubuntu-latest
35
+ needs: [test]
36
+ steps:
37
+ - uses: actions/checkout@v4
38
+ - name: Set up Python
39
+ uses: actions/setup-python@v5
40
+ with:
41
+ python-version: '3.12'
42
+ cache: pip
43
+ cache-dependency-path: pyproject.toml
44
+ - name: Install dependencies
45
+ run: |
46
+ pip install build
47
+ - name: Build
48
+ run: |
49
+ python -m build
50
+ - name: Store the distribution packages
51
+ uses: actions/upload-artifact@v4
52
+ with:
53
+ name: python-packages
54
+ path: dist/
55
+
56
+ publish:
57
+ name: Publish to PyPI
58
+ runs-on: ubuntu-latest
59
+ if: startsWith(github.ref, 'refs/tags/') || github.event_name == 'workflow_dispatch'
60
+ needs: [build]
61
+ environment: release
62
+ permissions:
63
+ id-token: write
64
+ steps:
65
+ - name: Download distribution packages
66
+ uses: actions/download-artifact@v4
67
+ with:
68
+ name: python-packages
69
+ path: dist/
70
+ - name: Publish to PyPI
71
+ uses: pypa/gh-action-pypi-publish@release/v1
@@ -0,0 +1,20 @@
1
+ name: Tests
2
+
3
+ on:
4
+ push:
5
+ branches: [main]
6
+ pull_request:
7
+
8
+ jobs:
9
+ test:
10
+ runs-on: ubuntu-latest
11
+ strategy:
12
+ matrix:
13
+ python-version: ['3.10', '3.11', '3.12']
14
+ steps:
15
+ - uses: actions/checkout@v4
16
+ - uses: actions/setup-python@v5
17
+ with:
18
+ python-version: ${{ matrix.python-version }}
19
+ - run: pip install -e ".[test]"
20
+ - run: pytest --cov
@@ -0,0 +1,210 @@
1
+ # Byte-compiled / optimized / DLL files
2
+ __pycache__/
3
+ *.py[codz]
4
+ *$py.class
5
+
6
+ # C extensions
7
+ *.so
8
+
9
+ # Distribution / packaging
10
+ .Python
11
+ build/
12
+ develop-eggs/
13
+ dist/
14
+ downloads/
15
+ eggs/
16
+ .eggs/
17
+ lib/
18
+ lib64/
19
+ parts/
20
+ sdist/
21
+ var/
22
+ wheels/
23
+ share/python-wheels/
24
+ *.egg-info/
25
+ .installed.cfg
26
+ *.egg
27
+ MANIFEST
28
+
29
+ # PyInstaller
30
+ # Usually these files are written by a python script from a template
31
+ # before PyInstaller builds the exe, so as to inject date/other infos into it.
32
+ *.manifest
33
+ *.spec
34
+
35
+ # Installer logs
36
+ pip-log.txt
37
+ pip-delete-this-directory.txt
38
+
39
+ # Unit test / coverage reports
40
+ htmlcov/
41
+ .tox/
42
+ .nox/
43
+ .coverage
44
+ .coverage.*
45
+ .cache
46
+ nosetests.xml
47
+ coverage.xml
48
+ *.cover
49
+ *.py.cover
50
+ .hypothesis/
51
+ .pytest_cache/
52
+ cover/
53
+
54
+ # Translations
55
+ *.mo
56
+ *.pot
57
+
58
+ # Django stuff:
59
+ *.log
60
+ local_settings.py
61
+ db.sqlite3
62
+ db.sqlite3-journal
63
+
64
+ # Flask stuff:
65
+ instance/
66
+ .webassets-cache
67
+
68
+ # Scrapy stuff:
69
+ .scrapy
70
+
71
+ # Sphinx documentation
72
+ docs/_build/
73
+
74
+ # PyBuilder
75
+ .pybuilder/
76
+ target/
77
+
78
+ # Jupyter Notebook
79
+ .ipynb_checkpoints
80
+
81
+ # IPython
82
+ profile_default/
83
+ ipython_config.py
84
+
85
+ # pyenv
86
+ # For a library or package, you might want to ignore these files since the code is
87
+ # intended to run in multiple environments; otherwise, check them in:
88
+ # .python-version
89
+
90
+ # pipenv
91
+ # According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
92
+ # However, in case of collaboration, if having platform-specific dependencies or dependencies
93
+ # having no cross-platform support, pipenv may install dependencies that don't work, or not
94
+ # install all needed dependencies.
95
+ #Pipfile.lock
96
+
97
+ # UV
98
+ # Similar to Pipfile.lock, it is generally recommended to include uv.lock in version control.
99
+ # This is especially recommended for binary packages to ensure reproducibility, and is more
100
+ # commonly ignored for libraries.
101
+ #uv.lock
102
+
103
+ # poetry
104
+ # Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control.
105
+ # This is especially recommended for binary packages to ensure reproducibility, and is more
106
+ # commonly ignored for libraries.
107
+ # https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control
108
+ #poetry.lock
109
+ #poetry.toml
110
+
111
+ # pdm
112
+ # Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control.
113
+ # pdm recommends including project-wide configuration in pdm.toml, but excluding .pdm-python.
114
+ # https://pdm-project.org/en/latest/usage/project/#working-with-version-control
115
+ #pdm.lock
116
+ #pdm.toml
117
+ .pdm-python
118
+ .pdm-build/
119
+
120
+ # pixi
121
+ # Similar to Pipfile.lock, it is generally recommended to include pixi.lock in version control.
122
+ #pixi.lock
123
+ # Pixi creates a virtual environment in the .pixi directory, just like venv module creates one
124
+ # in the .venv directory. It is recommended not to include this directory in version control.
125
+ .pixi
126
+
127
+ # PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm
128
+ __pypackages__/
129
+
130
+ # Celery stuff
131
+ celerybeat-schedule
132
+ celerybeat.pid
133
+
134
+ # SageMath parsed files
135
+ *.sage.py
136
+
137
+ # Environments
138
+ .env
139
+ .envrc
140
+ .venv
141
+ env/
142
+ venv/
143
+ ENV/
144
+ env.bak/
145
+ venv.bak/
146
+
147
+ # Spyder project settings
148
+ .spyderproject
149
+ .spyproject
150
+
151
+ # Rope project settings
152
+ .ropeproject
153
+
154
+ # mkdocs documentation
155
+ /site
156
+
157
+ # mypy
158
+ .mypy_cache/
159
+ .dmypy.json
160
+ dmypy.json
161
+
162
+ # Pyre type checker
163
+ .pyre/
164
+
165
+ # pytype static type analyzer
166
+ .pytype/
167
+
168
+ # Cython debug symbols
169
+ cython_debug/
170
+
171
+ # PyCharm
172
+ # JetBrains specific template is maintained in a separate JetBrains.gitignore that can
173
+ # be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore
174
+ # and can be added to the global gitignore or merged into this file. For a more nuclear
175
+ # option (not recommended) you can uncomment the following to ignore the entire idea folder.
176
+ #.idea/
177
+
178
+ # Abstra
179
+ # Abstra is an AI-powered process automation framework.
180
+ # Ignore directories containing user credentials, local state, and settings.
181
+ # Learn more at https://abstra.io/docs
182
+ .abstra/
183
+
184
+ # Visual Studio Code
185
+ # Visual Studio Code specific template is maintained in a separate VisualStudioCode.gitignore
186
+ # that can be found at https://github.com/github/gitignore/blob/main/Global/VisualStudioCode.gitignore
187
+ # and can be added to the global gitignore or merged into this file. However, if you prefer,
188
+ # you could uncomment the following to ignore the entire vscode folder
189
+ # .vscode/
190
+
191
+ # Ruff stuff:
192
+ .ruff_cache/
193
+
194
+ # PyPI configuration file
195
+ .pypirc
196
+
197
+ # Cursor
198
+ # Cursor is an AI-powered code editor. `.cursorignore` specifies files/directories to
199
+ # exclude from AI features like autocomplete and code analysis. Recommended for sensitive data
200
+ # refer to https://docs.cursor.com/context/ignore-files
201
+ .cursorignore
202
+ .cursorindexingignore
203
+
204
+ # Marimo
205
+ marimo/_static/
206
+ marimo/_lsp/
207
+ __marimo__/
208
+
209
+ # VS Code Settings
210
+ .vscode/
@@ -0,0 +1,7 @@
1
+ repos:
2
+ - repo: https://github.com/astral-sh/ruff-pre-commit
3
+ rev: v0.9.6
4
+ hooks:
5
+ - id: ruff
6
+ args: [--fix]
7
+ - id: ruff-format
chaotax-0.0.1/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2026 Felix Köhler
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.
chaotax-0.0.1/PKG-INFO ADDED
@@ -0,0 +1,128 @@
1
+ Metadata-Version: 2.4
2
+ Name: chaotax
3
+ Version: 0.0.1
4
+ Summary: Simple JAX-based tool to compute Lyapunov spectra and exponents of dynamical systems.
5
+ Project-URL: repository, https://github.com/Ceyron/chaotax
6
+ Author: Felix Koehler
7
+ License-Expression: MIT
8
+ License-File: LICENSE
9
+ Keywords: chaos,dynamical-systems,jax,lyapunov,sciml
10
+ Requires-Python: >=3.10
11
+ Requires-Dist: jax>=0.4.13
12
+ Requires-Dist: jaxtyping>=0.2.20
13
+ Provides-Extra: docs
14
+ Requires-Dist: exponax; extra == 'docs'
15
+ Requires-Dist: furo; extra == 'docs'
16
+ Requires-Dist: ipykernel; extra == 'docs'
17
+ Requires-Dist: matplotlib; extra == 'docs'
18
+ Requires-Dist: nbsphinx; extra == 'docs'
19
+ Requires-Dist: sphinx; extra == 'docs'
20
+ Requires-Dist: sphinx-autodoc-typehints; extra == 'docs'
21
+ Provides-Extra: gpu
22
+ Requires-Dist: jax[cuda12]>=0.8.0; extra == 'gpu'
23
+ Provides-Extra: test
24
+ Requires-Dist: equinox; extra == 'test'
25
+ Requires-Dist: exponax; extra == 'test'
26
+ Requires-Dist: pytest; extra == 'test'
27
+ Requires-Dist: pytest-cov; extra == 'test'
28
+ Description-Content-Type: text/markdown
29
+
30
+ <p align="center">
31
+ <img src="docs/_static/logo.svg" alt="chaotax logo" width="200">
32
+ </p>
33
+
34
+ **🚨 This is a pre-release for me to cite in my dissertation. It is based on
35
+ software I once wrote for [APEBench](https://github.com/tum-pbs/apebench) (but
36
+ did not yet have the time to release) slightly rewritten and enhanced. Please
37
+ check back end of May 2026 for a full release with extended features,
38
+ documentation, and examples.**
39
+
40
+ <h1 align="center">
41
+ <span style="color: #f2614f;">chao</span><span style="color: #3b59b4;">tax</span>
42
+ </h1>
43
+ <h4 align="center">Simple <a href="https://github.com/google/jax" target="_blank">JAX</a>-based tool to compute Lyapunov spectra and exponents of dynamical systems using autodiff.</h4>
44
+
45
+ <p align="center">
46
+ <a href="https://pypi.org/project/chaotax/">
47
+ <img src="https://img.shields.io/pypi/v/chaotax.svg" alt="PyPI">
48
+ </a>
49
+ <a href="https://github.com/ceyron/chaotax/actions/workflows/tests.yml">
50
+ <img src="https://github.com/ceyron/chaotax/actions/workflows/tests.yml/badge.svg" alt="Tests">
51
+ </a>
52
+ <a href="https://fkoehler.site/chaotax/">
53
+ <img src="https://img.shields.io/badge/docs-latest-green" alt="docs-latest">
54
+ </a>
55
+ <a href="https://github.com/ceyron/chaotax/blob/main/LICENSE">
56
+ <img src="https://img.shields.io/badge/license-MIT-blue" alt="License">
57
+ </a>
58
+ </p>
59
+
60
+ <p align="center">
61
+ <a href="#installation">Installation</a> •
62
+ <a href="#quickstart">Quickstart</a> •
63
+ <a href="#documentation">Documentation</a> •
64
+ <a href="#related">Related</a>
65
+ </p>
66
+
67
+ `Chaotax` estimates Lyapunov exponents and spectra of dynamical systems using
68
+ [JAX](https://github.com/google/jax)'s automatic differentiation (JVP-based
69
+ linearisation). It works with any one-step state transition function, is
70
+ JIT-compilable, and GPU/TPU-ready.
71
+
72
+ ## Installation
73
+
74
+ ```bash
75
+ pip install chaotax
76
+ ```
77
+
78
+ Requires Python 3.10+ and JAX 0.4.13+. See the [JAX install guide](https://jax.readthedocs.io/en/latest/installation.html).
79
+
80
+ ## Quickstart
81
+
82
+ Estimate the largest Lyapunov exponent of a system given a one-step transition
83
+ function:
84
+
85
+ ```python
86
+ import jax
87
+ import jax.numpy as jnp
88
+ import chaotax
89
+
90
+ # Define a one-step stepper (e.g., Lorenz via RK4)
91
+ def lorenz_stepper(u):
92
+ ...
93
+ return u_next
94
+
95
+ u_0 = jnp.array([1.0, 0.0, 0.0])
96
+ eps_0 = jax.random.normal(jax.random.PRNGKey(0), u_0.shape)
97
+
98
+ estimate_le = chaotax.lyapunov(lorenz_stepper, rollout_steps=20_000, dt=0.01)
99
+ le = estimate_le(u_0, eps_0)
100
+ ```
101
+
102
+ Compute the full Lyapunov spectrum:
103
+
104
+ ```python
105
+ estimate_spectrum = chaotax.lyapunov_spectrum(lorenz_stepper, rollout_steps=20_000, dt=0.01)
106
+ spectrum = estimate_spectrum(u_0, eps_0=jnp.eye(3))
107
+ # Returns exponents in descending order, e.g. [+, 0, -] for Lorenz
108
+ ```
109
+
110
+ ## Documentation
111
+
112
+ Documentation is available at [fkoehler.site/chaotax](https://fkoehler.site/chaotax/).
113
+
114
+ ## Related
115
+
116
+ - [Exponax](https://github.com/Ceyron/exponax) — Exponential and explicit time steppers for PDEs in JAX
117
+ - [Picardax](https://github.com/Ceyron/picardax) — Time-implicit differentiable PDE solvers in JAX
118
+
119
+ ## License
120
+
121
+ MIT, see [here](https://github.com/Ceyron/chaotax/blob/main/LICENSE).
122
+
123
+ ---
124
+
125
+ > [fkoehler.site](https://fkoehler.site/) &nbsp;&middot;&nbsp;
126
+ > GitHub [@ceyron](https://github.com/ceyron) &nbsp;&middot;&nbsp;
127
+ > X [@felix_m_koehler](https://twitter.com/felix_m_koehler) &nbsp;&middot;&nbsp;
128
+ > LinkedIn [Felix Koehler](https://www.linkedin.com/in/felix-koehler)
@@ -0,0 +1,99 @@
1
+ <p align="center">
2
+ <img src="docs/_static/logo.svg" alt="chaotax logo" width="200">
3
+ </p>
4
+
5
+ **🚨 This is a pre-release for me to cite in my dissertation. It is based on
6
+ software I once wrote for [APEBench](https://github.com/tum-pbs/apebench) (but
7
+ did not yet have the time to release) slightly rewritten and enhanced. Please
8
+ check back end of May 2026 for a full release with extended features,
9
+ documentation, and examples.**
10
+
11
+ <h1 align="center">
12
+ <span style="color: #f2614f;">chao</span><span style="color: #3b59b4;">tax</span>
13
+ </h1>
14
+ <h4 align="center">Simple <a href="https://github.com/google/jax" target="_blank">JAX</a>-based tool to compute Lyapunov spectra and exponents of dynamical systems using autodiff.</h4>
15
+
16
+ <p align="center">
17
+ <a href="https://pypi.org/project/chaotax/">
18
+ <img src="https://img.shields.io/pypi/v/chaotax.svg" alt="PyPI">
19
+ </a>
20
+ <a href="https://github.com/ceyron/chaotax/actions/workflows/tests.yml">
21
+ <img src="https://github.com/ceyron/chaotax/actions/workflows/tests.yml/badge.svg" alt="Tests">
22
+ </a>
23
+ <a href="https://fkoehler.site/chaotax/">
24
+ <img src="https://img.shields.io/badge/docs-latest-green" alt="docs-latest">
25
+ </a>
26
+ <a href="https://github.com/ceyron/chaotax/blob/main/LICENSE">
27
+ <img src="https://img.shields.io/badge/license-MIT-blue" alt="License">
28
+ </a>
29
+ </p>
30
+
31
+ <p align="center">
32
+ <a href="#installation">Installation</a> •
33
+ <a href="#quickstart">Quickstart</a> •
34
+ <a href="#documentation">Documentation</a> •
35
+ <a href="#related">Related</a>
36
+ </p>
37
+
38
+ `Chaotax` estimates Lyapunov exponents and spectra of dynamical systems using
39
+ [JAX](https://github.com/google/jax)'s automatic differentiation (JVP-based
40
+ linearisation). It works with any one-step state transition function, is
41
+ JIT-compilable, and GPU/TPU-ready.
42
+
43
+ ## Installation
44
+
45
+ ```bash
46
+ pip install chaotax
47
+ ```
48
+
49
+ Requires Python 3.10+ and JAX 0.4.13+. See the [JAX install guide](https://jax.readthedocs.io/en/latest/installation.html).
50
+
51
+ ## Quickstart
52
+
53
+ Estimate the largest Lyapunov exponent of a system given a one-step transition
54
+ function:
55
+
56
+ ```python
57
+ import jax
58
+ import jax.numpy as jnp
59
+ import chaotax
60
+
61
+ # Define a one-step stepper (e.g., Lorenz via RK4)
62
+ def lorenz_stepper(u):
63
+ ...
64
+ return u_next
65
+
66
+ u_0 = jnp.array([1.0, 0.0, 0.0])
67
+ eps_0 = jax.random.normal(jax.random.PRNGKey(0), u_0.shape)
68
+
69
+ estimate_le = chaotax.lyapunov(lorenz_stepper, rollout_steps=20_000, dt=0.01)
70
+ le = estimate_le(u_0, eps_0)
71
+ ```
72
+
73
+ Compute the full Lyapunov spectrum:
74
+
75
+ ```python
76
+ estimate_spectrum = chaotax.lyapunov_spectrum(lorenz_stepper, rollout_steps=20_000, dt=0.01)
77
+ spectrum = estimate_spectrum(u_0, eps_0=jnp.eye(3))
78
+ # Returns exponents in descending order, e.g. [+, 0, -] for Lorenz
79
+ ```
80
+
81
+ ## Documentation
82
+
83
+ Documentation is available at [fkoehler.site/chaotax](https://fkoehler.site/chaotax/).
84
+
85
+ ## Related
86
+
87
+ - [Exponax](https://github.com/Ceyron/exponax) — Exponential and explicit time steppers for PDEs in JAX
88
+ - [Picardax](https://github.com/Ceyron/picardax) — Time-implicit differentiable PDE solvers in JAX
89
+
90
+ ## License
91
+
92
+ MIT, see [here](https://github.com/Ceyron/chaotax/blob/main/LICENSE).
93
+
94
+ ---
95
+
96
+ > [fkoehler.site](https://fkoehler.site/) &nbsp;&middot;&nbsp;
97
+ > GitHub [@ceyron](https://github.com/ceyron) &nbsp;&middot;&nbsp;
98
+ > X [@felix_m_koehler](https://twitter.com/felix_m_koehler) &nbsp;&middot;&nbsp;
99
+ > LinkedIn [Felix Koehler](https://www.linkedin.com/in/felix-koehler)
@@ -0,0 +1,15 @@
1
+ from ._lyapunov import (
2
+ lyapunov,
3
+ lyapunov_spectrum,
4
+ rollout_growth,
5
+ rollout_growth_spectrum,
6
+ )
7
+ from ._temporal_utils import repeat
8
+
9
+ __all__ = [
10
+ "lyapunov",
11
+ "lyapunov_spectrum",
12
+ "rollout_growth",
13
+ "rollout_growth_spectrum",
14
+ "repeat",
15
+ ]