Metadata-Version: 2.1
Name: compas_surrogate.acquisition_plotting
Version: 0.1.1
Summary: Plotting utils
Author-email: Avi Vajpeyi <avi.vajpeyi@gmail.com>
Project-URL: Homepage, https://github.com/COMPAS-Surrogate/acquisition_plotting
Project-URL: Bug Reports, https://github.com/COMPAS-Surrogate/acquisition_plotting/issues
Project-URL: Source, https://github.com/COMPAS-Surrogate/acquisition_plotting/
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Science/Research
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3.8
Requires-Python: >=3.8
Description-Content-Type: text/markdown
Requires-Dist: scipy
Requires-Dist: scikit-learn
Requires-Dist: pandas
Requires-Dist: corner
Requires-Dist: tqdm
Requires-Dist: bilby
Provides-Extra: dev
Requires-Dist: pytest>=6.0; extra == "dev"
Requires-Dist: pytest-cov>=4.1.0; extra == "dev"
Requires-Dist: coverage[toml]; extra == "dev"
Requires-Dist: pre-commit; extra == "dev"
Requires-Dist: flake8>=5.0.4; extra == "dev"
Requires-Dist: black==22.10.0; extra == "dev"
Requires-Dist: jupyter-book; extra == "dev"

# Acquisition Plotting

Some plotting utils and KL divergence calculation for final posteriors.

## Release Process

We use `python-semantic-release`.
This package will automatically determine the next version number based on the commit messages.
Example commit messages:

**Patch Release (e.g., 0.1.1):**
```
fix: resolve issue with missing argument
```

**Minor Release (e.g., 0.2.0):**
```
feat: add new feature to API
```

**Major Release (e.g., 1.0.0):**
```
    feat!: introduce breaking change to architecture
```
The ! after feat indicates a breaking change.
If your commit messages don't match these patterns, python-semantic-release will decide that no release is needed (no_release).
