You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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.
11
10
12
11
## Prerequisites
13
12
14
13
Before installing `model_tuner`, ensure your system meets the following requirements:
15
14
16
15
## Python Version
16
+
17
17
`model_tuner` requires **Python 3.7 or higher**. Specific dependency versions vary depending on your Python version.
18
18
19
19
## Dependencies
20
+
20
21
The following dependencies will be automatically installed when you install `model_tuner` via pip:
21
22
22
23
### For Python 3.7:
24
+
23
25
-`joblib==1.3.2`
24
26
-`tqdm==4.66.4`
25
27
-`catboost==1.2.7`
@@ -32,6 +34,7 @@ The following dependencies will be automatically installed when you install `mod
32
34
-`xgboost==1.6.2`
33
35
34
36
### For Python 3.8 to 3.10:
37
+
35
38
-`joblib==1.3.2`
36
39
-`tqdm==4.66.4`
37
40
-`catboost==1.2.7`
@@ -46,6 +49,7 @@ The following dependencies will be automatically installed when you install `mod
46
49
-`xgboost==2.1.2`
47
50
48
51
### For Python 3.11 and higher:
52
+
49
53
-`joblib==1.3.2`
50
54
-`tqdm==4.66.4`
51
55
-`catboost==1.2.7`
@@ -59,7 +63,6 @@ The following dependencies will be automatically installed when you install `mod
59
63
-`scikit-optimize==0.10.2`
60
64
-`xgboost==2.1.2`
61
65
62
-
63
66
## 💾 Installation
64
67
65
68
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
93
96
month = jul,
94
97
year = 2024,
95
98
publisher = {Zenodo},
96
-
version = {0.0.25a},
99
+
version = {0.0.26b},
97
100
doi = {10.5281/zenodo.12727322},
98
101
url = {https://doi.org/10.5281/zenodo.12727322}
99
102
}
100
103
```
101
104
102
-
103
105
## Support
104
106
105
107
If you have any questions or issues with `model_tuner`, please open an issue on this [GitHub repository](https://github.com/uclamii/model_tuner/).
106
108
107
-
108
109
## Acknowledgements
109
110
110
111
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.
0 commit comments