diff options
| author | Shivesh Mandalia <shivesh.mandalia@outlook.com> | 2020-02-28 19:05:55 +0000 |
|---|---|---|
| committer | Shivesh Mandalia <shivesh.mandalia@outlook.com> | 2020-02-28 19:05:55 +0000 |
| commit | efcc7ba1affc226d535f576714169558b8364540 (patch) | |
| tree | 2b833d5692324050c263dd8e5bb4d101e16efdb1 | |
| parent | 08b7980611d47aa90dc50a18bc02976e670ab720 (diff) | |
| download | GolemFlavor-efcc7ba1affc226d535f576714169558b8364540.tar.gz GolemFlavor-efcc7ba1affc226d535f576714169558b8364540.zip | |
add note about multinest library install
| -rw-r--r-- | README.md | 4 | ||||
| -rwxr-xr-x | misc/austin.py | 12 |
2 files changed, 9 insertions, 7 deletions
@@ -32,7 +32,9 @@ GolemFlavor has the following dependencies: * [`python-ternary`](https://github.com/marcharper/python-ternary) * [`GetDist`](https://getdist.readthedocs.io/en/latest/) -You can use `pip` to install the above automatically. +You can use `pip` to install the above automatically. Note that `PyMultiNest` +requires the `MultiNest` Bayesian inference library, see [the `PyMultiNest` +documentation for install instructions.](https://johannesbuchner.github.io/PyMultiNest/install.html#prerequisites-for-building-the-libraries) Additional dependencies: * [`GolemFit`](https://github.com/IceCubeOpenSource/GolemFit) diff --git a/misc/austin.py b/misc/austin.py index 726a762..dddab30 100755 --- a/misc/austin.py +++ b/misc/austin.py @@ -15,12 +15,12 @@ from functools import partial import numpy as np -from utils import fr as fr_utils -from utils import misc as misc_utils -from utils import plot as plot_utils -from utils.enums import str_enum -from utils.enums import Likelihood, ParamTag, PriorsCateg -from utils.param import Param, ParamSet +from golemflavor import fr as fr_utils +from golemflavor import misc as misc_utils +from golemflavor import plot as plot_utils +from golemflavor.enums import str_enum +from golemflavor.enums import Likelihood, ParamTag, PriorsCateg +from golemflavor.param import Param, ParamSet from matplotlib import pyplot as plt |
