Tensorwaves

Latest version: v0.4.12

Safety actively analyzes 629994 Python packages for vulnerabilities to keep your Python projects secure.

Scan your dependencies

Page 6 of 7

0.2.3

_See all documentation for this version [here](https://tensorwaves.rtfd.io/en/0.2.3)._

πŸ”¨ Internal maintenance

- The [`expertsystem`](https://expertsystem.rtfd.io) has been replaced by [`ampform`](https://ampform.rtfd.io) and [`qrules`](https://qrules.rtfd.io)
- The `master` branch has been [renamed to `main`](https://github.blog/changelog/2020-10-01-the-default-branch-for-newly-created-repositories-is-now-main).

0.2.2

_See all documentation for this version [here](https://tensorwaves.rtfd.io/en/0.2.2)._

πŸ’‘ New features

<details>
<summary>Added the option to cache constant sub-expressions in SympyModels (247 and 260)</summary>

Closes 100

</details>


⚠️ Interface

<details>
<summary>Optimize result is returned as a FitResult class (254)</summary>

Wrapped the optimize `dict` output in a `FitResult` class. It's a rather simple `attr` data container that wraps what was previously in a `dict` form. Optimizer-specific info has been put under a `specifics` attribute.

</details>


πŸ› Bug fixes

<details>
<summary>YAMLSummary callback correctly handles complex values (252)</summary>
</details>

<details>
<summary>YAMLSummary now also dumps the final fit result at on_optimize_end, not only for each optimize step (252)</summary>
</details>

<details>
<summary>Complex parameter values are now correctly loaded from CSV (253)</summary>

The `csv.DictReader` crashes when there are complex values (and using `QUOTE_NONNUMERIC`). This was not spotted, because the tests only work with float parameters. Now one additional (complex) parameter is set free and the bug has been fixed. To speed up the tests, the UnbinnedNLL fixture uses Jax now.

</details>


πŸ”¨ Internal maintenance

<details>
<summary>Upgraded to expertsystem v0.7.1-2, which renders StateTransitionGraphs more nicely (259)</summary>


</details>


πŸ“ Documentation

<details>
<summary>Added install cells in Jupyter notebooks for Google Colab (250 and 251)</summary>

See https://github.com/ComPWA/expertsystem/pull/535

</details>


πŸ–±οΈ Developer Experience

<details>
<summary>Added cspell, pyright, and ComPWA/meta pre-commit hooks (256)</summary>

- No need to install [Pyright](https://github.com/microsoft/pyright) and [cSpell](https://github.com/streetsidesoftware/cspell/tree/master/packages/cspell) anymore (through `npm`), because they are now executed as a `pre-commit` hook. See [ComPWA/mirrors-cspell](https://github.com/ComPWA/mirrors-cspell) and [ComPWA/mirrors-pyright](https://github.com/ComPWA/mirrors-pyright).
- Replaced scripts under `.pre-commit-hooks` with hooks from the [ComPWA/meta](https://github.com/ComPWA/meta) repository. Now the `tox -e sty` job works again.

</details>

0.2.1

_See all documentation for this version [here](https://tensorwaves.rtfd.io/en/0.2.1)._

πŸ’‘ New features

- Added `ScipyMinimizer` adapter as an interface to [`scipy.optimize.minimize`](https://docs.scipy.org/doc/scipy/reference/generated/scipy.optimize.minimize.html) (#231, 235, and 241)
- Added more initialize stage and end stages to the `Callback` interface (234)
- New façade functions in the `physics` module help extracting intensity components from the amplitude model (244)
- Added support for lambdifying to `tensorflow` (245)
(The resulting function is not efficient yet. This may have to wait until TF v2.5 is out or other improvements to the lambdifying are implemented, like 100.)

⚠️ Interface

- New abstracts for the `Callback` interface: `.on_optimize_start()` and `.on_optimize_end()` (234)
- There's a new top module: `physics` (244)

πŸ”¨ Internal maintenance

- No dependency on `pandas` anymore: the `CSVSummary` callback uses `csv.DictWriter` instead (239)
- Upgraded to [`expertsystem` v0.7.1](https://github.com/ComPWA/expertsystem/releases/tag/0.7.1) (#248)

πŸ“ Documentation

- New example notebook: generate data and optimize for an arbitrary model (232)
- Added a SciPy example fit to usage notebook (235)
- Improved the optimize process plots (242)
- Figures are now rendered as SVG (243)

πŸ–±οΈ Developer Experience

- Added [`collapsible_headings`](https://github.com/aquirdTurtle/Collapsible_Headings) for Jupyter Lab (#233)
- Packages listed under `extras_require` are now also pinned through the developer dependencies (240)

0.2.0

_See all documentation for this version [here](https://tensorwaves.rtfd.io/en/0.2.0)._

⚠️ Interface

**Several breaking changes!**
All physics (`amplitude`, `dynamics`, and `kinematics` modules) has been moved to the `expertsystem`, where the amplitude model is now formulated in terms of SymPy (see [v0.7.0](https://github.com/ComPWA/expertsystem/releases/tag/0.7.0)). TensorWaves is now more abstract: the core has become a template `Model` class that can be 'lambdified' into a `Function` with different computational backends. The `esimator` and `data` modules are still there, but changed slightly because of the intermediate `Model` layer.

Since the responsibilities of `tensorwaves` have changed quite a bit and much code has been removed, the module structure has been changed drastically as well. The example workflow notebooks therefore changed as well.

_The new workflow is described [here](https://pwa.readthedocs.io/projects/tensorwaves/en/stable/usage.html)._

0.1.5

_See all documentation for this version [here](https://tensorwaves.rtfd.io/en/0.1.5)._

**This is the final release before the switch to SymPy.** See 222 and `expertsystem` [v0.7.0a0](https://github.com/ComPWA/expertsystem/releases/tag/0.7.0a0).

πŸ› Bug fixes

- Progress bar works better now in Jupyter notebook because of `tqdm.autonotebook` (223)

πŸ”¨ Internal maintenance
- Upgraded to `expertsystem` [v0.6.10](https://pwa.readthedocs.io/projects/expertsystem/en/0.6.10) (#224)
- Upgraded to [`iminuit` v2.x](https://iminuit.readthedocs.io/en/stable/changelog.html#december-7-2020) (213)

πŸ“ Documentation

- Visualization of modules with `pydeps` has been removed (202)
- Top of each sub-module API page has an `import` statement so that it is easier to see where the sub-module is located (217)

πŸ–±οΈ Developer Experience

_See also [changes listed in `expertsystem` v0.6.10](https://github.com/ComPWA/expertsystem/releases/tag/0.6.10)_
- Certain GitHub Actions can now be started manually (208)
- CI runs on draft PR again (210)
- Preference is now given over intersphinx syntax links (215)
- Added infrastructure for generating custom stubs to the `typing` folder (216)
- `pre-commit` hooks are now automatically upgraded through GitHub Actions(220)
- Notebooks can now be run and rendered as HTML through `tox -e doclive` as well (225)

0.1.4

_See all documentation for this version [here](https://tensorwaves.rtfd.io/en/0.1.4)._

πŸ’‘ New features

- Upgraded from `expertsystem` 0.6.5 to `expertsystem` 0.6.8 (199), see release notes [0.6.6](https://github.com/ComPWA/expertsystem/releases/tag/0.6.6), [0.6.7](https://github.com/ComPWA/expertsystem/releases/tag/0.6.7) and [0.6.8](https://github.com/ComPWA/expertsystem/releases/tag/0.6.8)

⚠️ Interface

- The `Estimator` now requires a phase-space sample for normalization and the constructor of the `IntensityBuilder` does not require one (192)

πŸ› Bug fixes

- Correctly import form factor in relativistic Breit-Wigner (187)
- Added _mass_*_width_ factor to relativistic Breit-Wigner without form factor (189)
- Correctly throw invalid _L_ error (188)

πŸ–±οΈ Developer Experience

- Issue templates have been improved (190)
- Added new issue label for interface changes (193)
- Added tests for the shape of a kinematics dataset (194)
- Removed the Python example workflow script (197)

Page 6 of 7

Β© 2024 Safety CLI Cybersecurity Inc. All Rights Reserved.