Skip to content

Commit 6ff86c2

Browse files
committed
new functionality in 0.1.6a2
1 parent 30732c4 commit 6ff86c2

9 files changed

Lines changed: 2829 additions & 650 deletions

examples/fastwoe_multiclass.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -401,7 +401,7 @@
401401
],
402402
"metadata": {
403403
"kernelspec": {
404-
"display_name": ".venv (3.11.8)",
404+
"display_name": "fastwoe",
405405
"language": "python",
406406
"name": "python3"
407407
},

examples/fastwoe_visualize_woe.ipynb

Lines changed: 469 additions & 0 deletions
Large diffs are not rendered by default.

examples/miv_feature_selection.ipynb

Lines changed: 958 additions & 0 deletions
Large diffs are not rendered by default.

fastwoe/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525

2626
# Optional plotting functionality
2727
try:
28-
from .metrics import plot_performance, visualize_woe
28+
from .plots import plot_performance, visualize_woe
2929

3030
_HAS_PLOTTING = True
3131
except ImportError:
@@ -40,7 +40,7 @@ def _plotting_not_available(*args, **kwargs):
4040
plot_performance = _plotting_not_available
4141
visualize_woe = _plotting_not_available
4242

43-
__version__ = "0.1.6a1"
43+
__version__ = "0.1.6a2"
4444
__author__ = "xRiskLab"
4545
__email__ = "contact@xrisklab.ai"
4646

0 commit comments

Comments
 (0)