eryn 1.2.0__tar.gz → 1.2.2__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 (39) hide show
  1. {eryn-1.2.0 → eryn-1.2.2}/PKG-INFO +3 -3
  2. {eryn-1.2.0 → eryn-1.2.2}/README.md +2 -2
  3. {eryn-1.2.0 → eryn-1.2.2}/pyproject.toml +1 -1
  4. {eryn-1.2.0 → eryn-1.2.2}/src/eryn/ensemble.py +3 -3
  5. {eryn-1.2.0 → eryn-1.2.2}/src/eryn/CMakeLists.txt +0 -0
  6. {eryn-1.2.0 → eryn-1.2.2}/src/eryn/__init__.py +0 -0
  7. {eryn-1.2.0 → eryn-1.2.2}/src/eryn/backends/__init__.py +0 -0
  8. {eryn-1.2.0 → eryn-1.2.2}/src/eryn/backends/backend.py +0 -0
  9. {eryn-1.2.0 → eryn-1.2.2}/src/eryn/backends/hdfbackend.py +0 -0
  10. {eryn-1.2.0 → eryn-1.2.2}/src/eryn/git_version.py.in +0 -0
  11. {eryn-1.2.0 → eryn-1.2.2}/src/eryn/model.py +0 -0
  12. {eryn-1.2.0 → eryn-1.2.2}/src/eryn/moves/__init__.py +0 -0
  13. {eryn-1.2.0 → eryn-1.2.2}/src/eryn/moves/combine.py +0 -0
  14. {eryn-1.2.0 → eryn-1.2.2}/src/eryn/moves/delayedrejection.py +0 -0
  15. {eryn-1.2.0 → eryn-1.2.2}/src/eryn/moves/distgen.py +0 -0
  16. {eryn-1.2.0 → eryn-1.2.2}/src/eryn/moves/distgenrj.py +0 -0
  17. {eryn-1.2.0 → eryn-1.2.2}/src/eryn/moves/gaussian.py +0 -0
  18. {eryn-1.2.0 → eryn-1.2.2}/src/eryn/moves/group.py +0 -0
  19. {eryn-1.2.0 → eryn-1.2.2}/src/eryn/moves/groupstretch.py +0 -0
  20. {eryn-1.2.0 → eryn-1.2.2}/src/eryn/moves/mh.py +0 -0
  21. {eryn-1.2.0 → eryn-1.2.2}/src/eryn/moves/move.py +0 -0
  22. {eryn-1.2.0 → eryn-1.2.2}/src/eryn/moves/mtdistgen.py +0 -0
  23. {eryn-1.2.0 → eryn-1.2.2}/src/eryn/moves/mtdistgenrj.py +0 -0
  24. {eryn-1.2.0 → eryn-1.2.2}/src/eryn/moves/multipletry.py +0 -0
  25. {eryn-1.2.0 → eryn-1.2.2}/src/eryn/moves/red_blue.py +0 -0
  26. {eryn-1.2.0 → eryn-1.2.2}/src/eryn/moves/rj.py +0 -0
  27. {eryn-1.2.0 → eryn-1.2.2}/src/eryn/moves/stretch.py +0 -0
  28. {eryn-1.2.0 → eryn-1.2.2}/src/eryn/moves/tempering.py +0 -0
  29. {eryn-1.2.0 → eryn-1.2.2}/src/eryn/pbar.py +0 -0
  30. {eryn-1.2.0 → eryn-1.2.2}/src/eryn/prior.py +0 -0
  31. {eryn-1.2.0 → eryn-1.2.2}/src/eryn/state.py +0 -0
  32. {eryn-1.2.0 → eryn-1.2.2}/src/eryn/tests/__init__.py +0 -0
  33. {eryn-1.2.0 → eryn-1.2.2}/src/eryn/tests/test_eryn.py +0 -0
  34. {eryn-1.2.0 → eryn-1.2.2}/src/eryn/utils/__init__.py +0 -0
  35. {eryn-1.2.0 → eryn-1.2.2}/src/eryn/utils/periodic.py +0 -0
  36. {eryn-1.2.0 → eryn-1.2.2}/src/eryn/utils/stopping.py +0 -0
  37. {eryn-1.2.0 → eryn-1.2.2}/src/eryn/utils/transform.py +0 -0
  38. {eryn-1.2.0 → eryn-1.2.2}/src/eryn/utils/updates.py +0 -0
  39. {eryn-1.2.0 → eryn-1.2.2}/src/eryn/utils/utility.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: eryn
3
- Version: 1.2.0
3
+ Version: 1.2.2
4
4
  Summary: Eryn: an omni-MCMC sampling package.
5
5
  Author: Michael Katz
6
6
  Author-email: Michael Katz <mikekatz04@gmail.com>
@@ -50,7 +50,7 @@ Description-Content-Type: text/markdown
50
50
 
51
51
  Eryn is an advanced MCMC sampler. It has the capability to run with parallel tempering, multiple model types, and unknown counts within each model type using Reversible Jump MCMC techniques. Eryn is heavily based on [emcee](https://emcee.readthedocs.io/en/stable/). The `emcee` base structure with the Ensemble Sampler, State objects, proposal setup, and storage backends is carried over into Eryn with small changes to account for the increased complexity. In a simple sense, Eryn is an advanced (and slightly more complicated) version of `emcee`.
52
52
 
53
- If you use Eryn in your publication, please cite the paper [arXiv:2303.02164](https://arxiv.org/abs/2303.02164), its [zenodo](https://zenodo.org/record/7705496#.ZAhzukJKjlw), and [emcee](https://emcee.readthedocs.io/en/stable/). The documentation for Eryn can be found here: [mikekatz04.github.io/Eryn](https://mikekatz04.github.io/Eryn). You will find the code on Github: [github.com/mikekatz04/Eryn](https://github.com/mikekatz04/Eryn).
53
+ If you use Eryn in your publication, please cite the paper [arXiv:2303.02164](https://arxiv.org/abs/2303.02164), its [zenodo](https://zenodo.org/records/17162828), and [emcee](https://emcee.readthedocs.io/en/stable/). The documentation for Eryn can be found here: [mikekatz04.github.io/Eryn](https://mikekatz04.github.io/Eryn). You will find the code on Github: [github.com/mikekatz04/Eryn](https://github.com/mikekatz04/Eryn).
54
54
 
55
55
  ## Getting Started
56
56
 
@@ -65,7 +65,7 @@ To import eryn:
65
65
  from eryn.ensemble import EnsembleSampler
66
66
  ```
67
67
 
68
- See [examples notebook](https://github.com/mikekatz04/Eryn/blob/main/examples/Eryn_tutorial.ipynb) for more info. You can also navigate the [Documentation](https://mikekatz04.github.io/Eryn/html/index.html) pages.
68
+ See [examples notebook](https://github.com/mikekatz04/Eryn/blob/main/examples/Eryn_tutorial.ipynb) for more info. You can also navigate the [Documentation](https://mikekatz04.github.io/Eryn/index.html) pages.
69
69
 
70
70
 
71
71
  ### Prerequisites
@@ -2,7 +2,7 @@
2
2
 
3
3
  Eryn is an advanced MCMC sampler. It has the capability to run with parallel tempering, multiple model types, and unknown counts within each model type using Reversible Jump MCMC techniques. Eryn is heavily based on [emcee](https://emcee.readthedocs.io/en/stable/). The `emcee` base structure with the Ensemble Sampler, State objects, proposal setup, and storage backends is carried over into Eryn with small changes to account for the increased complexity. In a simple sense, Eryn is an advanced (and slightly more complicated) version of `emcee`.
4
4
 
5
- If you use Eryn in your publication, please cite the paper [arXiv:2303.02164](https://arxiv.org/abs/2303.02164), its [zenodo](https://zenodo.org/record/7705496#.ZAhzukJKjlw), and [emcee](https://emcee.readthedocs.io/en/stable/). The documentation for Eryn can be found here: [mikekatz04.github.io/Eryn](https://mikekatz04.github.io/Eryn). You will find the code on Github: [github.com/mikekatz04/Eryn](https://github.com/mikekatz04/Eryn).
5
+ If you use Eryn in your publication, please cite the paper [arXiv:2303.02164](https://arxiv.org/abs/2303.02164), its [zenodo](https://zenodo.org/records/17162828), and [emcee](https://emcee.readthedocs.io/en/stable/). The documentation for Eryn can be found here: [mikekatz04.github.io/Eryn](https://mikekatz04.github.io/Eryn). You will find the code on Github: [github.com/mikekatz04/Eryn](https://github.com/mikekatz04/Eryn).
6
6
 
7
7
  ## Getting Started
8
8
 
@@ -17,7 +17,7 @@ To import eryn:
17
17
  from eryn.ensemble import EnsembleSampler
18
18
  ```
19
19
 
20
- See [examples notebook](https://github.com/mikekatz04/Eryn/blob/main/examples/Eryn_tutorial.ipynb) for more info. You can also navigate the [Documentation](https://mikekatz04.github.io/Eryn/html/index.html) pages.
20
+ See [examples notebook](https://github.com/mikekatz04/Eryn/blob/main/examples/Eryn_tutorial.ipynb) for more info. You can also navigate the [Documentation](https://mikekatz04.github.io/Eryn/index.html) pages.
21
21
 
22
22
 
23
23
  ### Prerequisites
@@ -8,7 +8,7 @@ requires = [
8
8
  [project]
9
9
  name = "eryn" #@NAMESUFFIX@
10
10
 
11
- version = "1.2.0"
11
+ version = "1.2.2"
12
12
 
13
13
  description = "Eryn: an omni-MCMC sampling package."
14
14
 
@@ -35,7 +35,7 @@ class EnsembleSampler(object):
35
35
  everything from a basic non-tempered MCMC to a parallel-tempered,
36
36
  global fit containing multiple branches (models) and a variable
37
37
  number of leaves (sources) per branch.
38
- See `here <https://mikekatz04.github.io/Eryn/html/tutorial/Eryn_tutorial.html#The-Tree-Metaphor>`_
38
+ See `here <https://mikekatz04.github.io/Eryn/Eryn_tutorial.html#The-Tree-Metaphor>`_
39
39
  for a basic explainer.
40
40
 
41
41
  Parameters related to parallelization can be controlled via the ``pool`` argument.
@@ -75,7 +75,7 @@ class EnsembleSampler(object):
75
75
  ``args`` and ``kwargs`` below.
76
76
 
77
77
  Please see the
78
- `tutorial <https://mikekatz04.github.io/Eryn/html/tutorial/Eryn_tutorial.html#>`_
78
+ `tutorial <https://mikekatz04.github.io/Eryn/Eryn_tutorial.html#>`_
79
79
  for more information.
80
80
 
81
81
  priors (dict): The prior dictionary can take four forms.
@@ -98,7 +98,7 @@ class EnsembleSampler(object):
98
98
  provide_groups (bool, optional): If ``True``, provide groups as described in ``log_like_fn`` above.
99
99
  A group parameter is added for each branch. (default: ``False``)
100
100
  provide_supplemental (bool, optional): If ``True``, it will provide keyword arguments to
101
- the Likelihood function: ``supps`` and ``branch_supps``. Please see the `Tutorial <https://mikekatz04.github.io/Eryn/html/tutorial/Eryn_tutorial.html#>`_
101
+ the Likelihood function: ``supps`` and ``branch_supps``. Please see the `Tutorial <https://mikekatz04.github.io/Eryn/Eryn_tutorial.html#>`_
102
102
  and :class:`eryn.state.BranchSupplemental` for more information.
103
103
  tempering_kwargs (dict, optional): Keyword arguments for initialization of the
104
104
  tempering class: :class:`eryn.moves.tempering.TemperatureControl`. (default: ``{}``)
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes