File size: 803 Bytes
9c6594c |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 |
from wandb.integration.sklearn import (
plot_calibration_curve,
plot_class_proportions,
plot_classifier,
plot_clusterer,
plot_confusion_matrix,
plot_elbow_curve,
plot_feature_importances,
plot_learning_curve,
plot_outlier_candidates,
plot_precision_recall,
plot_regressor,
plot_residuals,
plot_roc,
plot_silhouette,
plot_summary_metrics,
)
__all__ = (
"plot_classifier",
"plot_clusterer",
"plot_regressor",
"plot_summary_metrics",
"plot_learning_curve",
"plot_feature_importances",
"plot_class_proportions",
"plot_calibration_curve",
"plot_roc",
"plot_precision_recall",
"plot_confusion_matrix",
"plot_elbow_curve",
"plot_silhouette",
"plot_residuals",
"plot_outlier_candidates",
)
|