.gitignore
.pre-commit-config.yaml
.readthedocs.yml
CHANGELOG.md
CONTRIBUTING.md
LICENSE.md
README.md
dev_requirements.txt
pyproject.toml
requirements.txt
setup.cfg
setup.py
.github/ISSUE_TEMPLATE/bug_report.md
.github/ISSUE_TEMPLATE/feature_request.md
.github/workflows/compatibility-tests.yml
.github/workflows/integration-tests.yml
.github/workflows/lint.yml
.github/workflows/publish-to-pypi.yml
.github/workflows/tests.yml
docs/Makefile
docs/bilby-example.rst
docs/conf.py
docs/further-details.rst
docs/gaussian-example.rst
docs/gravitational-wave-inference.rst
docs/index.rst
docs/installation.rst
docs/normalising-flows-configuration.rst
docs/parallelisation.rst
docs/reparameterisations.rst
docs/requirements.txt
docs/running-the-sampler.rst
docs/sampler-configuration.rst
docs/assets/insertion_indices.png
docs/assets/logXlogL.png
docs/assets/posterior_distribution.png
docs/assets/state.png
docs/assets/trace.png
examples/2d_gaussian.py
examples/augmented_example.py
examples/bilby_example.py
examples/bilby_unbounded_priors.py
examples/corner_plot_example.py
examples/eggbox.py
examples/half_gaussian.py
examples/parallelisation_example.py
examples/reparameterisations_example.py
examples/rosenbrock.py
examples/unbounded_prior.py
examples/gw/basic_gw_example.py
examples/gw/calibration_example.py
examples/gw/full_gw_example.py
nessai/__init__.py
nessai/config.py
nessai/evidence.py
nessai/flowsampler.py
nessai/livepoint.py
nessai/model.py
nessai/nestedsampler.py
nessai/plot.py
nessai/posterior.py
nessai/priors.py
nessai.egg-info/PKG-INFO
nessai.egg-info/SOURCES.txt
nessai.egg-info/dependency_links.txt
nessai.egg-info/requires.txt
nessai.egg-info/top_level.txt
nessai/flowmodel/__init__.py
nessai/flowmodel/base.py
nessai/flowmodel/config.py
nessai/flowmodel/utils.py
nessai/flows/__init__.py
nessai/flows/base.py
nessai/flows/distributions.py
nessai/flows/maf.py
nessai/flows/nets.py
nessai/flows/nsf.py
nessai/flows/realnvp.py
nessai/flows/transforms.py
nessai/flows/utils.py
nessai/gw/__init__.py
nessai/gw/proposal.py
nessai/gw/reparameterisations.py
nessai/gw/utils.py
nessai/proposal/__init__.py
nessai/proposal/analytic.py
nessai/proposal/augmented.py
nessai/proposal/base.py
nessai/proposal/flowproposal.py
nessai/proposal/rejection.py
nessai/proposal/utils.py
nessai/reparameterisations/__init__.py
nessai/reparameterisations/angle.py
nessai/reparameterisations/base.py
nessai/reparameterisations/combined.py
nessai/reparameterisations/null.py
nessai/reparameterisations/rescale.py
nessai/reparameterisations/utils.py
nessai/samplers/__init__.py
nessai/samplers/base.py
nessai/samplers/nestedsampler.py
nessai/utils/__init__.py
nessai/utils/bilbyutils.py
nessai/utils/distance.py
nessai/utils/distributions.py
nessai/utils/hist.py
nessai/utils/indices.py
nessai/utils/io.py
nessai/utils/logging.py
nessai/utils/multiprocessing.py
nessai/utils/rescaling.py
nessai/utils/sampling.py
nessai/utils/sorting.py
nessai/utils/stats.py
nessai/utils/structures.py
nessai/utils/testing.py
nessai/utils/threading.py
nessai/utils/torchutils.py
tests/conftest.py
tests/test_bilby_compatibility.py
tests/test_config.py
tests/test_deprecation_warnings.py
tests/test_evidence.py
tests/test_flowsampler.py
tests/test_livepoint.py
tests/test_model.py
tests/test_plot.py
tests/test_posterior.py
tests/test_priors.py
tests/test_sampling.py
tests/test_version.py
tests/test_flowmodel/test_flowmodel_base.py
tests/test_flowmodel/test_flowmodel_utils.py
tests/test_flows/test_base_flow.py
tests/test_flows/test_distributions.py
tests/test_flows/test_flow_utils.py
tests/test_flows/test_included_flows.py
tests/test_flows/test_nets.py
tests/test_flows/test_specific_flows.py
tests/test_gw/conftest.py
tests/test_gw/test_distance_converters.py
tests/test_gw/test_gw_proposal.py
tests/test_gw/test_gw_reparameterisations.py
tests/test_gw/test_reparameterisation_integration.py
tests/test_proposal/test_analytic.py
tests/test_proposal/test_augmented.py
tests/test_proposal/test_base_proposal.py
tests/test_proposal/test_rejection.py
tests/test_proposal/test_utils.py
tests/test_proposal/test_flowproposal/conftest.py
tests/test_proposal/test_flowproposal/test_flowproposal_add_reparam.py
tests/test_proposal/test_flowproposal/test_flowproposal_configuration.py
tests/test_proposal/test_flowproposal/test_flowproposal_draw.py
tests/test_proposal/test_flowproposal/test_flowproposal_flow.py
tests/test_proposal/test_flowproposal/test_flowproposal_init_resume.py
tests/test_proposal/test_flowproposal/test_flowproposal_integration.py
tests/test_proposal/test_flowproposal/test_flowproposal_plots.py
tests/test_proposal/test_flowproposal/test_flowproposal_population.py
tests/test_proposal/test_flowproposal/test_flowproposal_properties.py
tests/test_proposal/test_flowproposal/test_flowproposal_rescaling.py
tests/test_reparameterisations/conftest.py
tests/test_reparameterisations/test_angle.py
tests/test_reparameterisations/test_angle_pair.py
tests/test_reparameterisations/test_base_reparameterisation.py
tests/test_reparameterisations/test_combined.py
tests/test_reparameterisations/test_get_reparameterisation.py
tests/test_reparameterisations/test_null.py
tests/test_reparameterisations/test_rescale_to_bounds.py
tests/test_reparameterisations/test_scale_and_shift.py
tests/test_reparameterisations/test_to_cartesian.py
tests/test_samplers/test_base_sampler.py
tests/test_samplers/test_nested_sampler/conftest.py
tests/test_samplers/test_nested_sampler/test_core_sampling.py
tests/test_samplers/test_nested_sampler/test_flow_proposal.py
tests/test_samplers/test_nested_sampler/test_general_config.py
tests/test_samplers/test_nested_sampler/test_live_points.py
tests/test_samplers/test_nested_sampler/test_manage_state.py
tests/test_samplers/test_nested_sampler/test_ns_plotting.py
tests/test_samplers/test_nested_sampler/test_properties.py
tests/test_samplers/test_nested_sampler/test_proposal_config.py
tests/test_samplers/test_nested_sampler/test_resume.py
tests/test_samplers/test_nested_sampler/test_yield_sample.py
tests/test_utils/test_bilbyutils.py
tests/test_utils/test_distance_utils.py
tests/test_utils/test_distribution_utils.py
tests/test_utils/test_hist_utils.py
tests/test_utils/test_indices_utils.py
tests/test_utils/test_io_utils.py
tests/test_utils/test_logging_utils.py
tests/test_utils/test_multiprocessing_utils.py
tests/test_utils/test_rescaling_utils.py
tests/test_utils/test_sampling_utils.py
tests/test_utils/test_sorting_utils.py
tests/test_utils/test_stats_utils.py
tests/test_utils/test_structures_utils.py
tests/test_utils/test_testing_utils.py
tests/test_utils/test_threading_utils.py
tests/test_utils/test_torchtutils_utils.py