-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
39 additions
and
28 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,26 @@ | ||
""" | ||
""" | ||
+*****************************************************************+ | ||
* __ __ _ _ _____ * | ||
* | \/ | ___ __| | ___| | |_ _| _ _ __ ___ _ __ * | ||
* | |\/| |/ _ \ / _` |/ _ \ | | || | | | '_ \ / _ \ '__| * | ||
* | | | | (_) | (_| | __/ | | || |_| | | | | __/ | * | ||
* |_| |_|\___/ \__,_|\___|_| |_| \__,_|_| |_|\___|_| * | ||
* * | ||
+*****************************************************************+ | ||
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. | ||
Version: 0.0.15a | ||
Version: 0.0.16a | ||
""" | ||
|
||
__version__ = "0.0.15a" | ||
__version__ = "0.0.16a" | ||
__author__ = "Arthur Funnell, Leonid Shpaner, Panayiotis Petousis" | ||
__email__ = "[email protected]; [email protected]; [email protected]" | ||
|
||
|