-
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.
Fixed error with MANIFEST.in where requirements weren't copied over. Also added memory_profiler to bayesian fit method.
- Loading branch information
Showing
6 changed files
with
9 additions
and
3 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
__version__ = "2024.7.6" | ||
__version__ = "2024.7.8" | ||
|
||
from . import utils | ||
from . import visuals | ||
|
Empty file.
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 |
---|---|---|
|
@@ -8,4 +8,5 @@ xarray>=0.10.3 | |
seaborn>=0.10.1 | ||
optuna>=3.6.1 | ||
feature_engine>=1.8.0 | ||
memory-profiler | ||
#shap>=0.45.1 |
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 |
---|---|---|
|
@@ -30,7 +30,7 @@ | |
description='Feature selection via recursive feature inclusion', | ||
url='https://github.com/jolespin/clairvoyance', | ||
author='Josh L. Espinoza', | ||
author_email='[email protected]', | ||
author_email='[email protected]', | ||
license='BSD-3', | ||
packages=["clairvoyance"], | ||
install_requires=requirements[::-1], | ||
|