From 43395d2760c326642f1479328df77c523a724951 Mon Sep 17 00:00:00 2001 From: lshpaner Date: Thu, 21 Nov 2024 17:34:56 -0800 Subject: [PATCH] versioned to 0.0.22a --- README.md | 2 +- pyproject.toml | 2 +- src/model_tuner/__init__.py | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 903f206..aeba979 100644 --- a/README.md +++ b/README.md @@ -63,7 +63,7 @@ If you use `model_tuner` in your research or projects, please consider citing it month = jul, year = 2024, publisher = {Zenodo}, - version = {0.0.21a}, + version = {0.0.22a}, doi = {10.5281/zenodo.12727322}, url = {https://doi.org/10.5281/zenodo.12727322} } diff --git a/pyproject.toml b/pyproject.toml index 96e38c8..5a78e33 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "model_tuner" -version = "0.0.21a" +version = "0.0.22a" description = "A Python library for tuning machine learning models." readme = { file = "README.md", content-type = "text/markdown" } authors = [ diff --git a/src/model_tuner/__init__.py b/src/model_tuner/__init__.py index e54e7df..d1917ce 100644 --- a/src/model_tuner/__init__.py +++ b/src/model_tuner/__init__.py @@ -16,11 +16,11 @@ cross-validation. This library is particularly useful for model selection, hyperparameter tuning, and ensuring optimal performance across different metrics. -Version: 0.0.21a +Version: 0.0.22a """ -__version__ = "0.0.21a" +__version__ = "0.0.22a" __author__ = "Arthur Funnell, Leonid Shpaner, Panayiotis Petousis" __email__ = "lshpaner@ucla.edu; alafunnell@gmail.com; pp89@ucla.edu"