-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Lucas Einig
committed
Oct 2, 2024
1 parent
63feb59
commit ad28de9
Showing
35 changed files
with
1,855 additions
and
692 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
name: Publish package to PyPI when a new version tag is pushed | ||
|
||
on: | ||
push: | ||
tags: | ||
- 'v[0-9]+.[0-9]+.[0-9]+' | ||
|
||
jobs: | ||
pypi-publish: | ||
name: Publish release to PyPI | ||
runs-on: ubuntu-latest | ||
environment: | ||
name: pypi | ||
url: https://pypi.org/p/astro-ranch> | ||
permissions: | ||
id-token: write | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Set up Python | ||
uses: actions/setup-python@v4 | ||
with: | ||
python-version: "3.x" | ||
- name: Install dependencies | ||
run: | | ||
python -m pip install --upgrade pip | ||
pip install -q build | ||
- name: Build package | ||
run: | | ||
python -m build | ||
- name: Publish package distributions to PyPI | ||
uses: pypa/gh-action-pypi-publish@release/v1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,6 +8,7 @@ Subpackages | |
:maxdepth: 4 | ||
|
||
infovar.handlers | ||
infovar.processing | ||
infovar.stats | ||
|
||
Module contents | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,21 @@ | ||
# Example Jupyter notebooks | ||
|
||
This directory contains example notebooks illustrating the use of the `InfoVar` package for two different use cases. | ||
This directory contains example notebooks illustrating the use of the *InfoVar* package for two different use cases. | ||
|
||
- `california-housing.ipynb`: seeks the most useful variables or set of variables to estimate accurately the price of houses in California. | ||
- `multivariate-functions.ipynb`: seeks the most informative subset of variables in real multivariate analytic functions. | ||
**Discrete and continuous handler basic use:** | ||
|
||
- ``discrete-handler.ipynb``: illustrate the basic features of `DiscreteHandler` on synthetic data | ||
- ``continuous-handler.ipynb``: illustrate the basic features of `ContinuousHandler` on synthetic data | ||
|
||
**California Housing real-world example:** | ||
|
||
- ``californa-housing.ipynb``: most informative feature to predict house values in California | ||
|
||
**Statistical details:** | ||
|
||
- ``stat:bias-variance.ipynb``: controlling the bias and estimating the variance of canonical correlations and mutual information estimators | ||
- ``stat:canonical-corr.ipynb``: canonical correlations and their relation to mutual information in detail | ||
- ``stat:degeneracy.ipynb``: influence of duplicate data on estimators of differential conditional entropy and mutual information | ||
- ``stat:distribution.ipynb``: influence of data distribution on conditional differential entropy, mutual information and canonical correlations | ||
- ``stat:multidim.ipynb``: behavior and interpretation of mutual information for multidimensional variables or targets | ||
- ``stat:ranking``: variable ranking in details |
Large diffs are not rendered by default.
Oops, something went wrong.
File renamed without changes.
File renamed without changes.
Oops, something went wrong.