diff --git a/CHANGELOG.md b/CHANGELOG.md index 471b73d..be65077 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,10 @@ # Changelog +## Version 0.10.2 - xxx +### Changes +- `BaseProtocol.add_salvia_data` now also accepts absolute saliva sample times as argument + by setting `sample_times_absolute=True`. + ## Version 0.10.1 - Dec 01, 2023 ### Bugfixes - `biopsykit.classification.model_selection.SklearnPipelinePermuter`: fixed bug that lead to the incorrect flattening diff --git a/src/biopsykit/classification/model_selection/sklearn_pipeline_permuter.py b/src/biopsykit/classification/model_selection/sklearn_pipeline_permuter.py index e118301..b296a46 100644 --- a/src/biopsykit/classification/model_selection/sklearn_pipeline_permuter.py +++ b/src/biopsykit/classification/model_selection/sklearn_pipeline_permuter.py @@ -47,6 +47,7 @@ "StandardScaler": "Standard", "SelectKBest": "SkB", "RFE": "RFE", + "SelectFromModel": "SFM", "GaussianNB": "NB", "KNeighborsClassifier": "kNN", "DecisionTreeClassifier": "DT",