Skip to content

Commit

Permalink
chore: improve init file
Browse files Browse the repository at this point in the history
  • Loading branch information
tiadams committed Sep 27, 2024
1 parent 63ad745 commit 5b33fab
Showing 1 changed file with 40 additions and 3 deletions.
43 changes: 40 additions & 3 deletions syndat/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,40 @@
from syndat import domain
from syndat import scores
from syndat import visualization
from .visualization import (
plot_distributions,
plot_correlations,
plot_shap_discrimination,
plot_categorical_feature,
plot_numerical_feature
)

from .scores import (
auc,
jsd,
discrimination,
distribution,
correlation,
)

from .postprocessing import (
normalize_scale,
normalize_float_precision,
assert_minmax,
)

__all__ = [
# visualization
'plot_distributions',
'plot_correlations',
'plot_shap_discrimination',
'plot_categorical_feature',
'plot_numerical_feature',
# scores
'auc',
'jsd',
'discrimination',
'distribution',
'correlation',
# postprocessing
'normalize_scale',
'normalize_float_precision',
'assert_minmax',
]

0 comments on commit 5b33fab

Please sign in to comment.