Skip to content

Commit

Permalink
0.8.1 fixed incorrect handling of passing random_state to SklearnPipe…
Browse files Browse the repository at this point in the history
…linePermuter
  • Loading branch information
richrobe committed Apr 4, 2023
1 parent 3a31c4f commit 244271a
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 4 deletions.
4 changes: 3 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,13 +1,15 @@
# Changelog

## Version 0.8.0 - March 29, 2023
## Version 0.8.1 - Apr 04, 2023
### Added
- `biopsykit.classification.analysis`: Added functions to analyze classification results
- `biopsykit.classification.model_selection.SklearnPipelinePermuter`: Added methods to export classification metrics
as latex tables, to merge to different `SklearnPipelinePermuter` instances, and to compute additional classification
metrics.
- various new util functions
### Bugfixes and Improvements
- `biopsykit.classification.model_selection.SklearnPipelinePermuter`: fixing random state now works as intended and
produces reproducible results for real!
- `biopsykit.stats.StatsPipeline`: Improved behavior
- `biopsykit.plotting`: Improved layout
- minor bugfixes
Expand Down
4 changes: 3 additions & 1 deletion examples/SklearnPipelinePermuter_Example.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,9 @@
"metadata": {},
"outputs": [],
"source": [
"pipeline_permuter = SklearnPipelinePermuter(model_dict, params_dict, hyper_search_dict=hyper_search_dict, random_state=42)"
"pipeline_permuter = SklearnPipelinePermuter(\n",
" model_dict, params_dict, hyper_search_dict=hyper_search_dict, random_state=42\n",
")"
]
},
{
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "biopsykit"
version = "0.8.0"
version = "0.8.1"
description = "A Python package for the analysis of biopsychological data."
authors = [
"Robert Richer <robert.richer@fau.de>",
Expand Down
2 changes: 1 addition & 1 deletion src/biopsykit/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
"utils",
]

__version__ = "0.8.0"
__version__ = "0.8.1"


def version() -> None:
Expand Down

0 comments on commit 244271a

Please sign in to comment.