From b248f46df746628c6802ff98de07be57945ef316 Mon Sep 17 00:00:00 2001 From: Ruan Comelli Date: Sat, 4 Jun 2022 19:24:43 -0300 Subject: [PATCH] =?UTF-8?q?bump:=20version=200.20.37=20=E2=86=92=200.20.38?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- CHANGELOG.md | 20 ++++++++++++++++++++ pyproject.toml | 4 ++-- 2 files changed, 22 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6a6598f3..be3fe896 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,25 @@ +## v0.20.38 (2022-06-04) + +### Refactor + +- **model/training**: remove unnecessary arguments to `model.fit` and use new functionality from the bridging module +- **model/callbacks**: make "mode" mandatory and keyword-only in `SaveHistory` +- **model/callbacks**: remove extraneous arguments +- **model/callbacks**: improve time printer + +### Feat + +- **datasets/bridging**: add support for shuffling and auto-fixing batch size issues to `sliceable_dataset_to_tensorflow_dataset` +- **datasets/bridging**: add support for filtering in `sliceable_dataset_to_tensorflow_dataset` +- **management/cacher**: add decorator for cacher-aware functions +- **management/allocators**: add support for `allocate` method + +### Fix + +- **preprocessing/image_datasets**: fix image datasets description to be order-insensitive + ## v0.20.37 (2022-06-04) ### Fix diff --git a/pyproject.toml b/pyproject.toml index 4cec3a8f..0756effb 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "boiling-learning" -version = "0.20.37" +version = "0.20.38" description = "Deep learning models for phase-change quantification and classification." authors = [ {name = "Ruan Comelli", email = "ruancomelli@gmail.com"} @@ -162,5 +162,5 @@ plugins = [ [tool.commitizen] tag_format = "v$major.$minor.$patch$prerelease" update_changelog_on_bump = true -version = "0.20.37" +version = "0.20.38" version_files = ["pyproject.toml:version"]