typed-lisa-toolkit 0.7.0__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.
Files changed (75) hide show
  1. typed_lisa_toolkit-0.7.0/.gitignore +16 -0
  2. typed_lisa_toolkit-0.7.0/.gitlab/ci.yml +105 -0
  3. typed_lisa_toolkit-0.7.0/.pre-commit-config.yaml +16 -0
  4. typed_lisa_toolkit-0.7.0/CHANGELOG.md +500 -0
  5. typed_lisa_toolkit-0.7.0/LICENSE +373 -0
  6. typed_lisa_toolkit-0.7.0/PKG-INFO +48 -0
  7. typed_lisa_toolkit-0.7.0/README.md +23 -0
  8. typed_lisa_toolkit-0.7.0/cog.toml +29 -0
  9. typed_lisa_toolkit-0.7.0/docs/Makefile +24 -0
  10. typed_lisa_toolkit-0.7.0/docs/_sphinx_handlers.py +266 -0
  11. typed_lisa_toolkit-0.7.0/docs/_templates/base.rst +5 -0
  12. typed_lisa_toolkit-0.7.0/docs/_templates/class.rst +8 -0
  13. typed_lisa_toolkit-0.7.0/docs/_templates/module.rst +4 -0
  14. typed_lisa_toolkit-0.7.0/docs/_templates/reps_class.rst +8 -0
  15. typed_lisa_toolkit-0.7.0/docs/_templates/type.rst +14 -0
  16. typed_lisa_toolkit-0.7.0/docs/api/.gitignore +1 -0
  17. typed_lisa_toolkit-0.7.0/docs/api/internal/index.rst +11 -0
  18. typed_lisa_toolkit-0.7.0/docs/api/internal/utils.rst +9 -0
  19. typed_lisa_toolkit-0.7.0/docs/api/shop.rst +5 -0
  20. typed_lisa_toolkit-0.7.0/docs/api/toplevel.rst +5 -0
  21. typed_lisa_toolkit-0.7.0/docs/api/types.rst +5 -0
  22. typed_lisa_toolkit-0.7.0/docs/conf.py +106 -0
  23. typed_lisa_toolkit-0.7.0/docs/index.rst +54 -0
  24. typed_lisa_toolkit-0.7.0/docs/make.bat +35 -0
  25. typed_lisa_toolkit-0.7.0/docs/notebooks/sampling_GB_tutorial.ipynb +451 -0
  26. typed_lisa_toolkit-0.7.0/docs/notebooks/waveform_formatting.ipynb +320 -0
  27. typed_lisa_toolkit-0.7.0/docs/userguides/installation.rst +64 -0
  28. typed_lisa_toolkit-0.7.0/docs/userguides/quickstart.rst +51 -0
  29. typed_lisa_toolkit-0.7.0/docs/userguides/tutorials.rst +8 -0
  30. typed_lisa_toolkit-0.7.0/pyproject.toml +178 -0
  31. typed_lisa_toolkit-0.7.0/src/typed_lisa_toolkit/__init__.py +321 -0
  32. typed_lisa_toolkit-0.7.0/src/typed_lisa_toolkit/_constructors.py +106 -0
  33. typed_lisa_toolkit-0.7.0/src/typed_lisa_toolkit/_jit/__init__.py +5 -0
  34. typed_lisa_toolkit-0.7.0/src/typed_lisa_toolkit/_jit/jax_pytree.py +230 -0
  35. typed_lisa_toolkit-0.7.0/src/typed_lisa_toolkit/_loaders.py +15 -0
  36. typed_lisa_toolkit-0.7.0/src/typed_lisa_toolkit/_viz/__init__.py +5 -0
  37. typed_lisa_toolkit-0.7.0/src/typed_lisa_toolkit/_viz/options.py +167 -0
  38. typed_lisa_toolkit-0.7.0/src/typed_lisa_toolkit/_viz/plotting.py +815 -0
  39. typed_lisa_toolkit-0.7.0/src/typed_lisa_toolkit/l2d_interface/__init__.py +3 -0
  40. typed_lisa_toolkit-0.7.0/src/typed_lisa_toolkit/l2d_interface/array.py +174 -0
  41. typed_lisa_toolkit-0.7.0/src/typed_lisa_toolkit/l2d_interface/contract.py +507 -0
  42. typed_lisa_toolkit-0.7.0/src/typed_lisa_toolkit/l2d_interface/py.typed +0 -0
  43. typed_lisa_toolkit-0.7.0/src/typed_lisa_toolkit/l2d_interface/validators.py +112 -0
  44. typed_lisa_toolkit-0.7.0/src/typed_lisa_toolkit/py.typed +0 -0
  45. typed_lisa_toolkit-0.7.0/src/typed_lisa_toolkit/shop/__init__.py +77 -0
  46. typed_lisa_toolkit-0.7.0/src/typed_lisa_toolkit/shop/conversions.py +380 -0
  47. typed_lisa_toolkit-0.7.0/src/typed_lisa_toolkit/shop/transforms.py +458 -0
  48. typed_lisa_toolkit-0.7.0/src/typed_lisa_toolkit/types/__init__.py +340 -0
  49. typed_lisa_toolkit-0.7.0/src/typed_lisa_toolkit/types/_mixins.py +687 -0
  50. typed_lisa_toolkit-0.7.0/src/typed_lisa_toolkit/types/data.py +2069 -0
  51. typed_lisa_toolkit-0.7.0/src/typed_lisa_toolkit/types/likelihood.py +226 -0
  52. typed_lisa_toolkit-0.7.0/src/typed_lisa_toolkit/types/misc.py +552 -0
  53. typed_lisa_toolkit-0.7.0/src/typed_lisa_toolkit/types/modes.py +87 -0
  54. typed_lisa_toolkit-0.7.0/src/typed_lisa_toolkit/types/noisemodel.py +910 -0
  55. typed_lisa_toolkit-0.7.0/src/typed_lisa_toolkit/types/representations.py +1814 -0
  56. typed_lisa_toolkit-0.7.0/src/typed_lisa_toolkit/types/tapering.py +196 -0
  57. typed_lisa_toolkit-0.7.0/src/typed_lisa_toolkit/types/waveforms.py +932 -0
  58. typed_lisa_toolkit-0.7.0/src/typed_lisa_toolkit/utils.py +290 -0
  59. typed_lisa_toolkit-0.7.0/tests/conftest.py +1363 -0
  60. typed_lisa_toolkit-0.7.0/tests/legacy/test_tapering.py +40 -0
  61. typed_lisa_toolkit-0.7.0/tests/test_contract.py +817 -0
  62. typed_lisa_toolkit-0.7.0/tests/test_conversions.py +137 -0
  63. typed_lisa_toolkit-0.7.0/tests/test_data.py +395 -0
  64. typed_lisa_toolkit-0.7.0/tests/test_jit.py +192 -0
  65. typed_lisa_toolkit-0.7.0/tests/test_likelihood.py +114 -0
  66. typed_lisa_toolkit-0.7.0/tests/test_loading.py +13 -0
  67. typed_lisa_toolkit-0.7.0/tests/test_mixins.py +137 -0
  68. typed_lisa_toolkit-0.7.0/tests/test_noisemodel.py +327 -0
  69. typed_lisa_toolkit-0.7.0/tests/test_ops.py +934 -0
  70. typed_lisa_toolkit-0.7.0/tests/test_public_api.py +148 -0
  71. typed_lisa_toolkit-0.7.0/tests/test_representations.py +1001 -0
  72. typed_lisa_toolkit-0.7.0/tests/test_transforms.py +198 -0
  73. typed_lisa_toolkit-0.7.0/tests/test_utils.py +48 -0
  74. typed_lisa_toolkit-0.7.0/tests/test_waveforms.py +183 -0
  75. typed_lisa_toolkit-0.7.0/uv.lock +3115 -0
@@ -0,0 +1,16 @@
1
+ __pycache__
2
+ .vscode
3
+ .astropy
4
+ .cache
5
+ .config
6
+ .ipython
7
+ .ipynb_checkpoints
8
+ .local
9
+ *.DS_Store
10
+ _version.py
11
+ *.egg-info
12
+ sandbox
13
+ .pytest_cache
14
+ _build
15
+ .coverage
16
+ coverage.xml
@@ -0,0 +1,105 @@
1
+ stages:
2
+ - build
3
+ - test
4
+ - deploy
5
+
6
+ # commitcheck:
7
+ # stage: test
8
+ # image:
9
+ # name: ghcr.io/cocogitto/cog:7.0.0
10
+ # entrypoint: ["/bin/sh", "-c"]
11
+ # rules:
12
+ # - if: '$CI_PIPELINE_SOURCE == "merge_request_event"'
13
+ # - if: '$CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH' && $CI_COMMIT_MESSAGE =~ /Merge branch .+ into .+[\s\S]*?See merge request/'
14
+ # when: never # Skip post-merge pipelines
15
+ # - if: '$CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH'
16
+ # script:
17
+ # - cog check --ignore-merge-commits
18
+
19
+ pytest:
20
+ stage: test
21
+ image: python:3.13
22
+ rules:
23
+ - if: '$CI_PIPELINE_SOURCE == "merge_request_event"'
24
+ - if: '$CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH && $CI_COMMIT_MESSAGE =~ /Merge branch .+ into .+[\s\S]*?See merge request/'
25
+ when: never # Skip post-merge pipelines
26
+ - if: '$CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH'
27
+ script:
28
+ - pip install -q --root-user-action=ignore uv
29
+ - uv sync --all-extras --all-groups
30
+ - source .venv/bin/activate
31
+ - pre-commit run --all-files --show-diff-on-failure
32
+ - basedpyright --gitlabcodequality report.json
33
+ - basedpyright tests
34
+ - pytest --cov=typed_lisa_toolkit --cov-branch --cov-report=term-missing
35
+ --cov-report=xml:coverage.xml --junitxml=report.xml
36
+ --cov-fail-under=85 -m "not slow"
37
+ coverage: '/(?i)total.*? (100(?:\.0+)?\%|[1-9]?\d(?:\.\d+)?\%)$/'
38
+ artifacts:
39
+ paths:
40
+ - coverage.xml
41
+ - report.xml
42
+ - report.json
43
+ reports:
44
+ junit: report.xml
45
+ coverage_report:
46
+ coverage_format: cobertura
47
+ path: coverage.xml
48
+ codequality: report.json
49
+
50
+ expire_in: 1 week
51
+
52
+ pages:
53
+ stage: deploy
54
+ image: python:3.13
55
+ rules:
56
+ - if: '$CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH'
57
+ - if: '$CI_COMMIT_TAG =~ /^\d+\.\d+\.\d+(?:-[A-Za-z-]+\d+)?$/'
58
+ - when: never
59
+ script:
60
+ - pip install -q --root-user-action=ignore uv
61
+ - uv add git+https://github.com/asantini29/phentax.git
62
+ - uv sync --group doc
63
+ - source .venv/bin/activate
64
+ - make -C docs clean html
65
+ - mv docs/_build/html public
66
+ - anybadge -l documentation -v latest -f documentation.svg -c green
67
+ artifacts:
68
+ paths:
69
+ - public
70
+ - documentation.svg
71
+ expire_in: 1 week
72
+
73
+ build:
74
+ stage: build
75
+ image: python:3.13
76
+ script:
77
+ - pip install -q --root-user-action=ignore uv
78
+ - uv build --sdist --wheel
79
+ artifacts:
80
+ paths:
81
+ - dist/
82
+ rules:
83
+ - if: '$CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH'
84
+ - if: '$CI_PIPELINE_SOURCE == "merge_request_event"'
85
+ - if: '$CI_COMMIT_TAG =~ /^\d+\.\d+\.\d+(?:-[A-Za-z-]+\d+)?$/'
86
+ - when: never
87
+
88
+ pypi:
89
+ stage: deploy
90
+ image: python:3.13
91
+ variables:
92
+ TWINE_USERNAME: "$PYPI_USERNAME"
93
+ TWINE_PASSWORD: "$PYPI_PASSWORD"
94
+ TWINE_REPOSITORY: "$PYPI_REPOSITORY"
95
+ dependencies:
96
+ - build
97
+
98
+ rules:
99
+ - if: '$CI_COMMIT_TAG =~ /^\d+\.\d+\.\d+(?:-[A-Za-z-]+\d+)?$/'
100
+ - when: never
101
+ script:
102
+ - pip install -q --root-user-action=ignore uv twine
103
+ - uv sync --group dev
104
+ - source .venv/bin/activate
105
+ - twine upload --verbose dist/*
@@ -0,0 +1,16 @@
1
+ repos:
2
+ - repo: https://github.com/astral-sh/uv-pre-commit
3
+ rev: 0.11.7
4
+ hooks:
5
+ - id: uv-lock
6
+ - repo: https://github.com/astral-sh/ruff-pre-commit
7
+ rev: v0.15.10
8
+ hooks:
9
+ - id: ruff-check
10
+ name: sort imports
11
+ args: [ --fix, --select, I]
12
+ - id: ruff-check
13
+ name: lint
14
+ args: [ --fix]
15
+ - id: ruff-format
16
+ name: format
@@ -0,0 +1,500 @@
1
+ # Changelog
2
+ All notable changes to this project will be documented in this file. See [conventional commits](https://www.conventionalcommits.org/) for commit guidelines.
3
+
4
+ - - -
5
+ ## 0.7.0 - 2026-06-07
6
+ #### Features
7
+ - <span style="background-color: #d73a49; color: white; padding: 2px 6px; border-radius: 3px; font-weight: bold; font-size: 0.85em;">BREAKING</span>direct mojito loader - (dd85682) - Senwen Deng
8
+ - improve array typing - (a6634c6) - Senwen Deng
9
+ #### Bug Fixes
10
+ - pytorch compat - (23aef3a) - Senwen Deng
11
+ - PSD protocol - (6a5dca4) - Senwen Deng
12
+ - 2d image extent - (869512c) - Senwen Deng
13
+ #### Revert
14
+ - removed orbit loading - (83c8622) - Senwen Deng
15
+ #### Documentation
16
+ - prepare 0.7.0 - (3fc6bd3) - Senwen Deng
17
+ #### Tests
18
+ - pytorch - (de9e2c1) - Senwen Deng
19
+ #### Continuous Integration
20
+ - correct triggering - (5b887b3) - Senwen Deng
21
+ - finalize pypi - (4bfb246) - Senwen Deng
22
+ - pypi - (11dd970) - Senwen Deng
23
+ #### Refactoring
24
+ - removed deprecated EOL 0.7.0 - (eb6af04) - Senwen Deng
25
+ #### Miscellaneous Chores
26
+ - removed direct deps - (aa10582) - Senwen Deng
27
+
28
+ - - -
29
+
30
+ ## 0.6.6 - 2026-05-10
31
+ #### Features
32
+ - time phasor - (c8ece68) - Senwen Deng
33
+ #### Bug Fixes
34
+ - array compat api - (7a2ee27) - Senwen Deng
35
+ - adapted to new wdm-transform - (32e4f77) - Senwen Deng
36
+ #### Documentation
37
+ - another tutorial - (fb44146) - Senwen Deng
38
+ #### Continuous Integration
39
+ - no latex - (9995be7) - Senwen Deng
40
+
41
+ - - -
42
+
43
+ ## 0.6.5 - 2026-05-06
44
+ #### Features
45
+ - better plot - (fe2c551) - Senwen Deng
46
+ #### Documentation
47
+ - correct sampling GB tutorial - (d2c4c3a) - Senwen Deng
48
+ #### Refactoring
49
+ - further cleaning of viz - (0bf6f49) - Senwen Deng
50
+
51
+ - - -
52
+
53
+ ## 0.6.4 - 2026-04-28
54
+ #### Features
55
+ - make jittable - (c72e899) - Senwen Deng
56
+ #### Bug Fixes
57
+ - enforce lin grid - (40fd57e) - Senwen Deng
58
+ #### Tests
59
+ - further cleaning - (9f17823) - Senwen Deng
60
+ - further cleaned tests - (d2f5013) - Senwen Deng
61
+ - improved tests - (57f40c2) - Senwen Deng
62
+ #### Refactoring
63
+ - new axis contract - (0580e44) - Senwen Deng
64
+ #### Miscellaneous Chores
65
+ - dependency - (7a9f1b5) - Senwen Deng
66
+
67
+ - - -
68
+
69
+ ## 0.6.3 - 2026-04-23
70
+ #### Bug Fixes
71
+ - <span style="background-color: #d73a49; color: white; padding: 2px 6px; border-radius: 3px; font-weight: bold; font-size: 0.85em;">BREAKING</span>linspace - (b8410a6) - Senwen Deng
72
+ #### Documentation
73
+ - added some examples - (ed7567a) - Senwen Deng
74
+ #### Tests
75
+ - migrated to pytest - (8c744cb) - Senwen Deng
76
+ - phasor properties - (2ffef13) - Senwen Deng
77
+ #### Continuous Integration
78
+ - cog check - (64a973a) - Senwen Deng
79
+ #### Refactoring
80
+ - better deprecation - (c2657a5) - Senwen Deng
81
+ - improved modes - (887de00) - Senwen Deng
82
+
83
+ - - -
84
+
85
+ ## 0.6.2 - 2026-04-22
86
+ #### Bug Fixes
87
+ - phasor amplitudes - (d341853) - Senwen Deng
88
+ - channel map pick - (1d5cd4f) - Senwen Deng
89
+ - load sangria, timed fsdata, phasor - (48e2451) - Senwen Deng
90
+ #### Documentation
91
+ - maintained docs - (c4d419d) - Senwen Deng
92
+ #### Refactoring
93
+ - unified data constructors - (7066fb8) - Senwen Deng
94
+ - unify (WIP) - (cb1b56b) - Senwen Deng
95
+ #### Style
96
+ - more linting - (cb58714) - Senwen Deng
97
+ - lint tests - (7f9326e) - Senwen Deng
98
+ - more linting - (a716fc0) - Senwen Deng
99
+
100
+ - - -
101
+
102
+ ## 0.6.1 - 2026-04-16
103
+ #### Features
104
+ - update deps - (bc3a646) - Senwen Deng
105
+ - plus cross waveform - (1c626ee) - Senwen Deng
106
+ #### Bug Fixes
107
+ - noise model and likelihood - (f20f63c) - Senwen Deng
108
+ #### Documentation
109
+ - improved presentation - (bf91513) - Senwen Deng
110
+ #### Miscellaneous Chores
111
+ - pre-commit hook and format fix - (be5ea33) - Senwen Deng
112
+ #### Style
113
+ - code format - (4dea5e7) - Senwen Deng
114
+
115
+ - - -
116
+
117
+ ## 0.6.0 - 2026-04-14
118
+ #### Features
119
+ - more branches for xyz aet conversions - (a35b83c) - Senwen Deng
120
+ - Grid2DSparse - (5b606e1) - Senwen Deng
121
+ - new constructors - (5164637) - Senwen Deng
122
+ - load mojito - (cb5836a) - Senwen Deng
123
+ - conversion XYZ <-> AET - (f08bfcc) - Senwen Deng
124
+ #### Bug Fixes
125
+ - limit reps shape - (3ca5679) - Senwen Deng
126
+ - consistent API - (e6b9391) - Senwen Deng
127
+ - py 3.12 compatibility - (97d649d) - Senwen Deng
128
+ - stft convention - (d0bbaa3) - Senwen Deng
129
+ #### Documentation
130
+ - clarify intended usage, meaning of terms - (94deef5) - Solano Sousa Felicio
131
+ - constructor docs - (4bef5c7) - Senwen Deng
132
+ - better API documentation - (3505b09) - Senwen Deng
133
+ #### Tests
134
+ - WDM transforms - (76df2e1) - Senwen Deng
135
+ - minxins and modes - (c2978fc) - Senwen Deng
136
+ #### Refactoring
137
+ - mapping objects - (1e1accb) - Senwen Deng
138
+ - <span style="background-color: #d73a49; color: white; padding: 2px 6px; border-radius: 3px; font-weight: bold; font-size: 0.85em;">BREAKING</span>change WDM to (Nf+1, Nt) grid and make transforms optional - (e774c33) - Solano Sousa Felicio
139
+ - <span style="background-color: #d73a49; color: white; padding: 2px 6px; border-radius: 3px; font-weight: bold; font-size: 0.85em;">BREAKING</span>public API - (018fe4e) - Senwen Deng
140
+ - kwarg only make - (92f5d6c) - Senwen Deng
141
+
142
+ - - -
143
+
144
+ ## 0.5.5 - 2026-03-27
145
+ #### Features
146
+ - STFT viz - (3d03d69) - Senwen Deng
147
+ #### Bug Fixes
148
+ - viz static typing - (20bac6e) - Senwen Deng
149
+ - dependency management - (12960f1) - Senwen Deng
150
+ #### Continuous Integration
151
+ - trigger on ver tags - (772a315) - Senwen Deng
152
+ #### Refactoring
153
+ - basedpyright - (fd3519d) - Senwen Deng
154
+
155
+ - - -
156
+
157
+ ## 0.5.4 - 2026-03-23
158
+ #### Features
159
+ - add waveform helpers - (35696e7) - Senwen Deng
160
+ - short name waveform constructors - (4b1e04a) - Senwen Deng
161
+ #### Bug Fixes
162
+ - py version - (97a1b65) - Senwen Deng
163
+ - legacy load - (d88f396) - Senwen Deng
164
+ - sum harmonics - (ab0b94b) - Senwen Deng
165
+ #### Refactoring
166
+ - better api - (45ec1d1) - Senwen Deng
167
+
168
+ - - -
169
+
170
+ ## 0.5.3 - 2026-03-19
171
+ #### Refactoring
172
+ - <span style="background-color: #d73a49; color: white; padding: 2px 6px; border-radius: 3px; font-weight: bold; font-size: 0.85em;">BREAKING</span>homogeneous harmonic projected waveform - (6d7b537) - Senwen Deng
173
+
174
+ - - -
175
+
176
+ ## 0.5.2 - 2026-03-18
177
+ #### Bug Fixes
178
+ - slice, channel names, phasor shape - (9d29d88) - Senwen Deng
179
+
180
+ - - -
181
+
182
+ ## 0.5.2 - 2026-03-18
183
+ #### Bug Fixes
184
+ - slice, channel names, phasor shape - (9d69110) - Senwen Deng
185
+
186
+ - - -
187
+
188
+ ## 0.5.2 - 2026-03-18
189
+ #### Bug Fixes
190
+ - slice, channel names, phasor shape - (c0ed2c9) - Senwen Deng
191
+
192
+ - - -
193
+
194
+ ## 0.5.2 - 2026-03-17
195
+ #### Bug Fixes
196
+ - phasor shape - (cfdd0e8) - Senwen Deng
197
+
198
+ - - -
199
+
200
+ ## 0.5.3 - 2026-03-17
201
+ #### Bug Fixes
202
+ - phasor shape - (a579174) - Senwen Deng
203
+
204
+ - - -
205
+
206
+ ## 0.5.2 - 2026-03-17
207
+ #### Bug Fixes
208
+ - phasor make - (d230cba) - Senwen Deng
209
+ - dangling np - (1ba9fc1) - Senwen Deng
210
+
211
+ - - -
212
+
213
+ ## 0.5.1 - 2026-03-17
214
+ #### Continuous Integration
215
+ - optimize job runs - (442ffeb) - Senwen Deng
216
+ #### Miscellaneous Chores
217
+ - added a license - (928b9a5) - Senwen Deng
218
+ #### Style
219
+ - consitent interface - (a627ae7) - Senwen Deng
220
+
221
+ - - -
222
+
223
+ ## 0.5.0 - 2026-03-16
224
+ #### Features
225
+ - multiple array backends - (5941deb) - Senwen Deng
226
+ #### Bug Fixes
227
+ - added more unit tests and fixed catched errors - (822412f) - Senwen Deng
228
+ - further cleaning - (e897e71) - Senwen Deng
229
+ #### Documentation
230
+ - up to date - (1ed2c6a) - Senwen Deng
231
+ #### Tests
232
+ - improve coverage - (e83aa5b) - Senwen Deng
233
+ - remove legacy - (7097a06) - Senwen Deng
234
+ #### Continuous Integration
235
+ - test coverage - (74af774) - Senwen Deng
236
+ #### Refactoring
237
+ - <span style="background-color: #d73a49; color: white; padding: 2px 6px; border-radius: 3px; font-weight: bold; font-size: 0.85em;">BREAKING</span>multiple backends - (7f3e85b) - Senwen Deng
238
+ - simplified typing - (d616e56) - Senwen Deng
239
+ #### Style
240
+ - sorted imports - (985eb62) - Senwen Deng
241
+
242
+ - - -
243
+
244
+ ## 0.4.4 - 2026-03-12
245
+ #### Bug Fixes
246
+ - `__iadd__` catch - (1755985) - Senwen Deng
247
+
248
+ - - -
249
+
250
+ ## 0.4.3 - 2026-02-19
251
+ #### Features
252
+ - <span style="background-color: #d73a49; color: white; padding: 2px 6px; border-radius: 3px; font-weight: bold; font-size: 0.85em;">BREAKING</span>WDM representation and WDM Whittle noise model - (8749eb1) - Solano Sousa Felicio
253
+ #### Bug Fixes
254
+ - Linspace from array too strict for TS.rfft - (4128612) - Solano Sousa Felicio
255
+ - type checks unpacking kwargs into IntegratorConfig - (8f8ed49) - Solano Sousa Felicio
256
+ #### Refactoring
257
+ - TF noisemodel and WDM representation - (2b9c8d1) - Senwen Deng
258
+ - simplify typing - (eaefe27) - Senwen Deng
259
+ #### Miscellaneous Chores
260
+ - cog config - (65d325e) - Senwen Deng
261
+
262
+ - - -
263
+
264
+ ## 0.4.2 - 2025-05-12
265
+ #### Features
266
+ - in-place addition - (5d6cd6b) - Senwen Deng
267
+ - inplace addition for Series - (7d09fbc) - Senwen Deng
268
+ #### Refactoring
269
+ - add series - (772cc2f) - Senwen Deng
270
+
271
+ - - -
272
+
273
+ ## 0.4.1 - 2025-04-23
274
+ #### Bug Fixes
275
+ - plank - (32818fc) - Senwen Deng
276
+ #### Tests
277
+ - tapering - (990a7b6) - Senwen Deng
278
+
279
+ - - -
280
+
281
+ ## 0.4.0 - 2025-04-23
282
+ #### Bug Fixes
283
+ - backward compatibility - (20357d3) - Senwen Deng
284
+ #### Documentation
285
+ - tapering - (62fc59d) - Senwen Deng
286
+ #### Features
287
+ - tapering - (d60dff2) - Senwen Deng
288
+
289
+ - - -
290
+
291
+ ## 0.3.7 - 2025-04-22
292
+ #### Bug Fixes
293
+ - make defaults private - (487d445) - Senwen Deng
294
+ - type hinting - (391db11) - Senwen Deng
295
+ #### Documentation
296
+ - fix scipy crossref - (8e7456d) - Senwen Deng
297
+ - noisemodel - (b38e153) - Senwen Deng
298
+ - scipy crossref - (0cf71c5) - Senwen Deng
299
+ #### Miscellaneous Chores
300
+ - rewording - (8e2b070) - Senwen Deng
301
+ - typo - (d40fa90) - Senwen Deng
302
+ #### Refactoring
303
+ - FDNoiseModel make - (5c1fb94) - Senwen Deng
304
+ - remove unused - (d5b2350) - Senwen Deng
305
+
306
+ - - -
307
+
308
+ ## 0.3.6 - 2025-04-11
309
+ #### Bug Fixes
310
+ - wf typing - (8c0d181) - Senwen Deng
311
+ - type string union - (17a194b) - Senwen Deng
312
+ - waveform typing - (a556c7c) - Senwen Deng
313
+ #### Features
314
+ - func to make dense waveform reps - (757f96d) - Senwen Deng
315
+ #### Tests
316
+ - dense maker - (b62dbec) - Senwen Deng
317
+
318
+ - - -
319
+
320
+ ## 0.3.5 - 2025-04-10
321
+ #### Bug Fixes
322
+ - python version requirement - (66fd518) - Senwen Deng
323
+
324
+ - - -
325
+
326
+ ## 0.3.4 - 2025-03-28
327
+ #### Bug Fixes
328
+ - noisemodel instance init - (899aee4) - Senwen Deng
329
+ #### Documentation
330
+ - fix GB tutorial - (407fbeb) - Senwen Deng
331
+
332
+ - - -
333
+
334
+ ## 0.3.3 - 2025-03-28
335
+ #### Bug Fixes
336
+ - fft convention - (638b3e0) - Senwen Deng
337
+ #### Miscellaneous Chores
338
+ - cog config - (5618971) - Senwen Deng
339
+
340
+ - - -
341
+
342
+ ## 0.3.2 - 2025-03-26
343
+ #### Refactoring
344
+ - noisemodel name convention - (b67a97d) - Senwen Deng
345
+ - removed ldc dependency - (6e20e4c) - Senwen Deng
346
+
347
+ - - -
348
+
349
+ ## 0.3.1 - 2025-03-20
350
+ #### Bug Fixes
351
+ - rfft, irfft, stfft dimension - (869498e) - Senwen Deng
352
+ - ts plotter type hints - (16a41d7) - Senwen Deng
353
+ - sft times - (f9300d0) - Senwen Deng
354
+ - legend kwargs - (7fe2064) - Senwen Deng
355
+ #### Features
356
+ - optional residual plot in compare - (3b6203c) - Senwen Deng
357
+
358
+ - - -
359
+
360
+ ## 0.3.0 - 2025-01-14
361
+ #### Documentation
362
+ - improved gb example - (1d2c1f2) - Senwen Deng
363
+ #### Features
364
+ - more fs plot units - (19e6c85) - Senwen Deng
365
+ - time-freq representation - (af26103) - Senwen Deng
366
+ #### Refactoring
367
+ - abstractify `Representation` - (9039193) - Senwen Deng
368
+
369
+ - - -
370
+
371
+ ## 0.2.4 - 2025-01-05
372
+ #### Bug Fixes
373
+ - comparison plot labels - (e77da02) - Senwen Deng
374
+ - add `__neg__` for `_NullValue` - (e49b2e4) - Senwen Deng
375
+ - value null arithdict - (a6dcbb3) - Senwen Deng
376
+ - keep names of `_SeriesData` - (0c8f4d4) - Senwen Deng
377
+ - type hinting `get_whitened` - (cc994f5) - Senwen Deng
378
+ - improved type hinting - (ba94d97) - Senwen Deng
379
+ - `get_integrand` factor order - (65aa0b6) - Senwen Deng
380
+ - use a protocol to annotate tapering callables - (c701864) - Senwen Deng
381
+ #### Documentation
382
+ - correct `get_interpolated` doc string - (f50e4bc) - Senwen Deng
383
+ #### Features
384
+ - take slice subset - (d53f28d) - Senwen Deng
385
+ #### Miscellaneous Chores
386
+ - rename `_NullDict` to `_NullValue` - (53320a9) - Senwen Deng
387
+ - remove trailing whitespace - (da8cb32) - Senwen Deng
388
+ #### Refactoring
389
+ - improve arithdicts arithmetics - (b7ec08a) - Senwen Deng
390
+
391
+ - - -
392
+
393
+ ## 0.2.3 - 2024-11-01
394
+ #### Bug Fixes
395
+ - correct phasor representation - (3033cd9) - Senwen Deng
396
+ - improved series plotting - (c242bef) - Senwen Deng
397
+ - correct `to_tsdata` and `to_fsdata` - (2df64fb) - Senwen Deng
398
+ - align with the design purpose for `draw` & `plot` - (2154d3e) - Senwen Deng
399
+ #### Features
400
+ - add `get_embedded` - (8fac2cb) - Senwen Deng
401
+ #### Tests
402
+ - adapt for phasor - (4dded23) - Senwen Deng
403
+
404
+ - - -
405
+
406
+ ## 0.2.2 - 2024-10-31
407
+ #### Bug Fixes
408
+ - warning message for `to_tsdata` - (eb70bf0) - Senwen Deng
409
+ - behaviour of `_draw` - (5cffe83) - Senwen Deng
410
+ - unwrap the angles for phasor - (e7d79e6) - Senwen Deng
411
+ - add back `dt` attribute for TimedFSData - (fb32630) - Senwen Deng
412
+ - promote `sum` method to `ArithDict` class - (4bb8da0) - Senwen Deng
413
+ - type annotations for phasor - (1ee219c) - Senwen Deng
414
+ #### Features
415
+ - allow custom interpolators for sensitivity - (a66d873) - Senwen Deng
416
+
417
+ - - -
418
+
419
+ ## 0.2.1 - 2024-10-28
420
+ #### Bug Fixes
421
+ - do not use trim_interp - (e7f614b) - Senwen Deng
422
+ #### Documentation
423
+ - update waveforms - (6641548) - Senwen Deng
424
+
425
+ - - -
426
+
427
+ ## 0.2.0 - 2024-10-26
428
+ #### Bug Fixes
429
+ - type hinting for waveforms - (3fa78a1) - Senwen Deng
430
+ - renamed cross-correlation - (20b9bd5) - Senwen Deng
431
+ #### Documentation
432
+ - minor update - (0da1cac) - Senwen Deng
433
+ - add tutorial for sampling GB - (d6f9228) - Senwen Deng
434
+ - add `extend_to` - (7d9434d) - Senwen Deng
435
+ - add likelihood module documentation - (6409eae) - Senwen Deng
436
+ - improve `get_cross_correlation` docstring - (11b7563) - Senwen Deng
437
+ - add sensitivity - (581c1e9) - Senwen Deng
438
+ #### Features
439
+ - add `extend_to` utility function - (ff8e22b) - Senwen Deng
440
+ - add likelihood - (3112c9f) - Senwen Deng
441
+ - add Template protocol - (c132d53) - Senwen Deng
442
+ - implemented sensitivity - (7d100ef) - Senwen Deng
443
+ #### Refactoring
444
+ - amend WhittleLikelihood - (0640b10) - Senwen Deng
445
+ - rename FDTemplate to FSWaveformGen - (80405aa) - Senwen Deng
446
+ - redesign `get_noise_psd` - (4d71b93) - Senwen Deng
447
+ #### Tests
448
+ - add test_likelihood.py - (d42f056) - Senwen Deng
449
+ - minor fix - (59dbfd9) - Senwen Deng
450
+ - add test_sensitivity.py - (b7fb088) - Senwen Deng
451
+
452
+ - - -
453
+
454
+ ## 0.1.0 - 2024-10-22
455
+ #### Bug Fixes
456
+ - improve the signature of `load_ldc_data` - (49f9ca3) - Senwen Deng
457
+ #### Continuous Integration
458
+ - fix ci.yml - (ab9b39c) - Senwen Deng
459
+ - suppress warning for pip - (543fa87) - Senwen Deng
460
+ - bring back pages deployment - (a75d1f7) - Senwen Deng
461
+ - reduce the number of jobs - (3433fb4) - Senwen Deng
462
+ - add docs-requirements.txt - (93310c7) - Senwen Deng
463
+ - add a CI to build the documentation - (bcdb806) - Senwen Deng
464
+ #### Documentation
465
+ - correct typo - (dcf714c) - Senwen Deng
466
+ - update quickstart guide - (d2df38a) - Senwen Deng
467
+ - reorganize index - (7b61155) - Senwen Deng
468
+ - minor fix plotters docstring - (477191d) - Senwen Deng
469
+ - fix docs-requirements.txt - (c054191) - Senwen Deng
470
+ - add plotters module documentation - (36d8874) - Senwen Deng
471
+ - update docs-requirements.txt - (4f3e274) - Senwen Deng
472
+ - correct the docstring of `save` - (12eeda4) - Senwen Deng
473
+ - improve documentation for representations - (69ec6ba) - Senwen Deng
474
+ - update accordingly docs - (847befe) - Senwen Deng
475
+ - moved rst content to docstrings - (a3dede9) - Senwen Deng
476
+ - add sphinx - (1170a50) - Senwen Deng
477
+ #### Features
478
+ - Add a function to read LDC data - (ed990b6) - Senwen Deng
479
+ - Add `save` and `load` methods to _SeriesData - (a3e15fe) - Senwen Deng
480
+ - add trim interpolation - (20d4701) - Senwen Deng
481
+ - add `to_phasor` for freq series - (4014cc4) - Senwen Deng
482
+ - sum for series of different lengths - (9ee8dc8) - Senwen Deng
483
+ - add arithmetic operations for `PhasorSequence` - (eeb1643) - Senwen Deng
484
+ - initial project implementation - (d4740c0) - Senwen Deng
485
+ #### Miscellaneous Chores
486
+ - correct type hinting import in plotters.py - (4c5d549) - Senwen Deng
487
+ - update README & format representations.py - (42ed614) - Senwen Deng
488
+ #### Refactoring
489
+ - clean up viz module - (7e9d27d) - Senwen Deng
490
+ - polish representation type hints - (a5b2a23) - Senwen Deng
491
+ - reconsider representations and waveforms - (9b1d975) - Senwen Deng
492
+ - change `real` & `imag` from methods to properties - (be2ec47) - Senwen Deng
493
+ - improved `modes.py` - (a2481f3) - Senwen Deng
494
+ #### Tests
495
+ - fix tests - (2d23e1b) - Senwen Deng
496
+ - fix testing files - (eea7465) - Senwen Deng
497
+
498
+ - - -
499
+
500
+ Changelog generated by [cocogitto](https://github.com/cocogitto/cocogitto).