Skip to content

Commit

Permalink
Update documentation dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
tomicapretto committed Nov 10, 2024
1 parent 419f5f9 commit cb79125
Show file tree
Hide file tree
Showing 4 changed files with 27 additions and 5 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/publish-docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,9 +32,9 @@ jobs:
python -m pip install quartodoc==0.6.1
- name: Set up Quarto
uses: quarto-dev/quarto-actions/setup@v2
uses: quarto-dev/quarto-actions/setup@v2
with:
version: 1.2.280 # since this is my local version, we could change it
version: 1.5.57 # since this is my local version, we could change it

- name: Build docs
shell: bash
Expand All @@ -43,7 +43,7 @@ jobs:
quarto render docs
touch docs/_site/.nojekyll
- name: Publish to GitHub
- name: Publish to GitHub
if: github.ref == 'refs/heads/main' || startsWith(github.ref, 'refs/tags') # Only from main or a tag
uses: quarto-dev/quarto-actions/publish@v2
with:
Expand Down
22 changes: 22 additions & 0 deletions docs/changelog.qmd
Original file line number Diff line number Diff line change
Expand Up @@ -9,25 +9,47 @@ pagetitle: "Changelog"

### New features

### Maintenance and fixes

### Documentation

### Deprecation

## 0.14.0

### New features

* Add configuration facilities to Bambi (#745)
* Interpet submodule now outputs informative messages when computing default values (#745)
* Bambi supports weighted responses (#761)
* Bambi supports constrained responses (#764)
* Implement `compute_log_likelihood()` method to compute the log likelihood on a model (#769)
* Add a class `InferenceMethods` that allows users to access the available inference methods and kwargs (#795)

### Maintenance and fixes

* Fix bug in predictions with models using HSGP (#780)
* Fix `get_model_covariates()` utility function (#801)
* Upgrade PyMC dependency to >= 5.13 (#803)
* Use `pm.compute_deterministics()` to compute deterministics when bayeux based samplers are used (#803)
* Wrap all the parameters of the response distribution (the likelihood) with a `pm.Deterministic` (#804)
* Keep `bayeux-ml` as the single direct JAX-related dependency (#804)
* The response component only holds response information about the response, not about predictors of the parent parameter (#804)
* Resolve import error associated with bayeux (#822)

### Documentation

* Our Code of Conduct now includes how to send a report (#783)
* Add polynomial regression example (#809)
* Add Contact form to our webpage (#816)

### Deprecation

* `f"{response_name}_obs"` has been replaced by `"__obs__"` as the dimension name for the observation index (#804)
* `f"{response_name}_{parameter_name}"` is no longer the name for the name of parameters of the likelihood. Now Bambi uses `"{parameter_name}"` (#804)
* `kind` in `Model.predict()` now use `"response_params"` and `"response"` instead of `"mean"` and `"pps"` (#804)
* `include_mean` has been replaced by `include_response_params` in `Model.fit()` (#804)

## 0.13.0

This is the first version of Bambi that is released with a Governance structure. Added in #709.
Expand Down
Loading

0 comments on commit cb79125

Please sign in to comment.