Skip to content

Commit 355c01e

Browse files
committed
Updating version number
1 parent 87fbb05 commit 355c01e

File tree

3 files changed

+10
-9
lines changed

3 files changed

+10
-9
lines changed

README.md

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,24 +2,26 @@
22

33
<img src="https://github.com/uclamii/model_tuner/blob/main/assets/modeltunersmaller.png?raw=true" width="250" style="border: none; outline: none; box-shadow: none;" oncontextmenu="return false;">
44

5-
<br>
5+
<br>
66

77
[![Downloads](https://pepy.tech/badge/model_tuner)](https://pepy.tech/project/model_tuner) [![PyPI](https://img.shields.io/pypi/v/model_tuner.svg)](https://pypi.org/project/model_tuner/) [![License](https://img.shields.io/badge/License-Apache_2.0-blue.svg)](https://opensource.org/licenses/Apache-2.0) [![DOI](https://zenodo.org/badge/DOI/10.5281/zenodo.12727322.svg)](https://doi.org/10.5281/zenodo.12727322)
88

9-
109
The `model_tuner` library is a versatile and powerful tool designed to facilitate the training, evaluation, and tuning of machine learning models. It supports various functionalities such as handling imbalanced data, applying different scaling and imputation techniques, calibrating models, and conducting cross-validation. This library is particularly useful for model selection, hyperparameter tuning, and ensuring optimal performance across different metrics.
1110

1211
## Prerequisites
1312

1413
Before installing `model_tuner`, ensure your system meets the following requirements:
1514

1615
## Python Version
16+
1717
`model_tuner` requires **Python 3.7 or higher**. Specific dependency versions vary depending on your Python version.
1818

1919
## Dependencies
20+
2021
The following dependencies will be automatically installed when you install `model_tuner` via pip:
2122

2223
### For Python 3.7:
24+
2325
- `joblib==1.3.2`
2426
- `tqdm==4.66.4`
2527
- `catboost==1.2.7`
@@ -32,6 +34,7 @@ The following dependencies will be automatically installed when you install `mod
3234
- `xgboost==1.6.2`
3335

3436
### For Python 3.8 to 3.10:
37+
3538
- `joblib==1.3.2`
3639
- `tqdm==4.66.4`
3740
- `catboost==1.2.7`
@@ -46,6 +49,7 @@ The following dependencies will be automatically installed when you install `mod
4649
- `xgboost==2.1.2`
4750

4851
### For Python 3.11 and higher:
52+
4953
- `joblib==1.3.2`
5054
- `tqdm==4.66.4`
5155
- `catboost==1.2.7`
@@ -59,7 +63,6 @@ The following dependencies will be automatically installed when you install `mod
5963
- `scikit-optimize==0.10.2`
6064
- `xgboost==2.1.2`
6165

62-
6366
## 💾 Installation
6467

6568
You can install `model_tuner` directly from PyPI:
@@ -93,18 +96,16 @@ If you use `model_tuner` in your research or projects, please consider citing it
9396
month = jul,
9497
year = 2024,
9598
publisher = {Zenodo},
96-
version = {0.0.25a},
99+
version = {0.0.26b},
97100
doi = {10.5281/zenodo.12727322},
98101
url = {https://doi.org/10.5281/zenodo.12727322}
99102
}
100103
```
101104

102-
103105
## Support
104106

105107
If you have any questions or issues with `model_tuner`, please open an issue on this [GitHub repository](https://github.com/uclamii/model_tuner/).
106108

107-
108109
## Acknowledgements
109110

110111
This work was supported by the UCLA Medical Informatics Institute (MII) and the Clinical and Translational Science Institute (CTSI). Special thanks to Dr. Alex Bui for his invaluable guidance and support, and to Panayiotis Petousis for his original contributions to this codebase.

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "model_tuner"
7-
version = "0.0.25a"
7+
version = "0.0.26b"
88
description = "A Python library for tuning machine learning models."
99
readme = { file = "README.md", content-type = "text/markdown" }
1010
authors = [

src/model_tuner/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,15 +19,15 @@
1919
Documentation: https://uclamii.github.io/model_tuner/
2020
2121
22-
Version: 0.0.25a
22+
Version: 0.0.26b
2323
2424
"""
2525

2626
# Assign only the detailed documentation to __doc__
2727
__doc__ = detailed_doc
2828

2929

30-
__version__ = "0.0.25a"
30+
__version__ = "0.0.26b"
3131
__author__ = "Arthur Funnell, Leonid Shpaner, Panayiotis Petousis"
3232
3333

0 commit comments

Comments
 (0)