Skip to content

Commit

Permalink
Merge pull request #159 from jiangyi15/update_0.2.2
Browse files Browse the repository at this point in the history
Bump version to v0.2.2
  • Loading branch information
jiangyi15 authored Nov 12, 2024
2 parents 68f3d58 + 532b0d0 commit f92d978
Show file tree
Hide file tree
Showing 2 changed files with 79 additions and 3 deletions.
64 changes: 63 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,72 @@

## [Unreleased](https://github.com/jiangyi15/tf-pwa/tree/HEAD)

[Full Changelog](https://github.com/jiangyi15/tf-pwa/compare/v0.2.1...HEAD)
[Full Changelog](https://github.com/jiangyi15/tf-pwa/compare/v0.2.2...HEAD)

## [v0.2.2](https://github.com/jiangyi15/tf-pwa/tree/v0.2.2) (2024-11-13)

[Full Changelog](https://github.com/jiangyi15/tf-pwa/compare/v0.2.1...v0.2.2)

**comparation of different way for identical particles**

[#148](https://github.com/jiangyi15/tf-pwa/pull/148)

**Added**

- `default_params` to set value for paramters for particle model .
[#155](https://github.com/jiangyi15/tf-pwa/pull/155)

- `add_int_err` option for fit fraction sample size uncertainties.
[#155](https://github.com/jiangyi15/tf-pwa/pull/155)

- phase space volume: [#143](https://github.com/jiangyi15/tf-pwa/pull/143)

- pole_function: [#144](https://github.com/jiangyi15/tf-pwa/pull/144)

- combine_asym_error: [#144](https://github.com/jiangyi15/tf-pwa/pull/144)

- New models.

- Kmatrix model from AmpGen: `pipi_Swave`, `Kpi_Swave`.
[#142](https://github.com/jiangyi15/tf-pwa/pull/142)

- Specail decay model for decaying to gamma: `gls_reduce_h0`.
[#144](https://github.com/jiangyi15/tf-pwa/pull/144)

- Polynomial model: `poly`.
[#144](https://github.com/jiangyi15/tf-pwa/pull/144)

- MLP model : `MLP`. [#147](https://github.com/jiangyi15/tf-pwa/pull/147)

- dispersion integral models: `DI`, `DI_a0`:
[#150](https://github.com/jiangyi15/tf-pwa/pull/150)

- Update on plots:

- histogram with fill style:
[#140](https://github.com/jiangyi15/tf-pwa/pull/140)

- plot for `index`, `extra_vars`:
[#145](https://github.com/jiangyi15/tf-pwa/pull/145)

**Changed**

- fit with no parameters: [#155](https://github.com/jiangyi15/tf-pwa/pull/155)

- Fix some bugs: [#141](https://github.com/jiangyi15/tf-pwa/pull/141)
[#153](https://github.com/jiangyi15/tf-pwa/pull/158)

- update documents: [#144](https://github.com/jiangyi15/tf-pwa/pull/144)
[#146](https://github.com/jiangyi15/tf-pwa/pull/146)
[#148](https://github.com/jiangyi15/tf-pwa/pull/148)
[#149](https://github.com/jiangyi15/tf-pwa/pull/149)
[#151](https://github.com/jiangyi15/tf-pwa/pull/151)
[#155](https://github.com/jiangyi15/tf-pwa/pull/155)

## [v0.2.1](https://github.com/jiangyi15/tf-pwa/tree/v0.2.1) (2024-02-10)

[Full Changelog](https://github.com/jiangyi15/tf-pwa/compare/v0.2.0...v0.2.1)

**Irreducible Tensor Formula**

[Covariant orbital-spin scheme for any spin based on irreducible tensor](https://inspirehep.net/literature/2620146).
Expand Down
18 changes: 16 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -92,8 +92,10 @@ conda install tf-pwa
<details><summary>
### pip
</summary><p>
When using `pip`, you will need to install CUDA to use GPU. Just run the
following command :

When using `pip`, you will need to install CUDA to use GPU (The newest
tensorflow support install with CUDA runtime directly as
`pip install tensorflow[and-cuda]`). Just run the following command :

```bash
python3 -m pip install -e .
Expand All @@ -106,6 +108,18 @@ with:
python3 -m pip install -e .[dev]
```

You can also install from pypi.org directly without cloning the repo manually.

```bash
python3 -m pip install TFPWA
```

And also for the newest version from github

```bash
python3 -m pip install git+https://github.com/jiangyi15/tf-pwa.git
```

</p></details>

## Scripts
Expand Down

0 comments on commit f92d978

Please sign in to comment.