Skip to content

Commit

Permalink
0.1.20
Browse files Browse the repository at this point in the history
Automatically generated by python-semantic-release
  • Loading branch information
github-actions committed Nov 24, 2023
1 parent 9a73194 commit 1d730da
Show file tree
Hide file tree
Showing 3 changed files with 79 additions and 2 deletions.
77 changes: 77 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,83 @@



## v0.1.20 (2023-11-24)

### Fix

* fix: forcing a new patch ([`9a73194`](https://github.com/mdtanker/invert4geom/commit/9a73194ea5b0e22e4422ed04f2c180c15de29867))

### Unknown

* Hyperparameter cross validation (#25)

* fix: add zref and density args to inversion

* fix: removes references to density and zref

* fix: remove python 3.12 support, add test for 3.10

* chore: specify semantic release options

* chore: remove pypy from testing versions

* feat: add cross validation module

* feat: add cross validation plot function

* build: add tqdm and seaborn deps

* docs: update simple_inversion.ipynb

Lower the grid resolution to run faster, add more detailed comments, use same zref as true topography, change choosen damping value

* docs: add damping_cross_validation.ipynb

new notebook to demonstrate how to perform a CV to find the optimal damping value.

* docs: add damping_cross_validation.ipynb to guide

* style: formatting cross_validation.py

* fix: allow matplotlib and seaborn to be optional

* chore: update deps in .yml and mapping

* chore: add github action workflow

run a python-semantic-release in no operation mode to see what will be done. Runs one all commits to PR's

* style: pre-commit fixes

* style: format fix

* chore: update release check

* chore: updating release check

* chore: remove semantic release check action

* fix: restructure damping cross validation

associated functions are termed "gravity" cross validation since they use the observed and predicted gravity data to determine the score.

* feat: add constraints cv functions

termed "constraints" since they use the difference between constraint point elevations and inverted topography to determine the score. Used for zref and density cross validations

* docs: reorganized damping CV notebook

* docs: restructured simple inversion notebook

* docs: restructured starting model notebook

* docs: add density and zref CV notebooks

---------

Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com> ([`2546ee4`](https://github.com/mdtanker/invert4geom/commit/2546ee401201509409c932cf8111370142911599))


## v0.1.19 (2023-11-24)

### Chore
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ classifiers = [
"Typing :: Typed",
]
readme = "README.md"
version = "0.1.19"
version = "0.1.20"

dependencies = [
"numpy",
Expand Down
2 changes: 1 addition & 1 deletion src/invert4geom/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,4 @@

from __future__ import annotations

__version__ = "0.1.19"
__version__ = "0.1.20"

0 comments on commit 1d730da

Please sign in to comment.