📚 The CoCalc Library - books, templates and other resources
License: OTHER
from .plot_linear_svc_regularization import plot_linear_svc_regularization1from .plot_interactive_tree import plot_tree_progressive, plot_tree_partition2from .plot_animal_tree import plot_animal_tree3from .plot_rbf_svm_parameters import plot_svm4from .plot_knn_regression import plot_knn_regression5from .plot_knn_classification import plot_knn_classification6from .plot_2d_separator import plot_2d_classification, plot_2d_separator7from .plot_nn_graphs import (plot_logistic_regression_graph,8plot_single_hidden_layer_graph,9plot_two_hidden_layer_graph)10from .plot_linear_regression import plot_linear_regression_wave11from .plot_tree_nonmonotonous import plot_tree_not_monotone12from .plot_scaling import plot_scaling13from .plot_pca import plot_pca_illustration, plot_pca_whitening, plot_pca_faces14from .plot_decomposition import plot_decomposition15from .plot_nmf import plot_nmf_illustration, plot_nmf_faces16from .plot_helpers import cm2, cm317from .plot_agglomerative import plot_agglomerative, plot_agglomerative_algorithm18from .plot_kmeans import plot_kmeans_algorithm, plot_kmeans_boundaries, plot_kmeans_faces19from .plot_improper_preprocessing import plot_improper_processing, plot_proper_processing20from .plot_cross_validation import (plot_threefold_split, plot_group_kfold,21plot_shuffle_split, plot_cross_validation,22plot_stratified_cross_validation)2324from .plot_grid_search import plot_grid_search_overview, plot_cross_val_selection25from .plot_metrics import (plot_confusion_matrix_illustration,26plot_binary_confusion_matrix,27plot_decision_threshold)28from .plot_dbscan import plot_dbscan29from .plot_ridge import plot_ridge_n_samples3031__all__ = ['plot_linear_svc_regularization',32"plot_animal_tree", "plot_tree_progressive",33'plot_tree_partition', 'plot_svm',34'plot_knn_regression',35'plot_logistic_regression_graph',36'plot_single_hidden_layer_graph',37'plot_two_hidden_layer_graph',38'plot_2d_classification',39'plot_2d_separator',40'plot_knn_classification',41'plot_linear_regression_wave',42'plot_tree_not_monotone',43'plot_scaling',44'plot_pca_illustration',45'plot_pca_faces',46'plot_pca_whitening',47'plot_decomposition',48'plot_nmf_illustration',49'plot_nmf_faces',50'plot_agglomerative',51'plot_agglomerative_algorithm',52'plot_kmeans_boundaries',53'plot_kmeans_algorithm',54'plot_kmeans_faces',55'cm3', 'cm2', 'plot_improper_processing', 'plot_proper_processing',56'plot_group_kfold',57'plot_shuffle_split',58'plot_stratified_cross_validation',59'plot_threefold_split',60'plot_cross_validation',61'plot_grid_search_overview',62'plot_cross_val_selection',63'plot_confusion_matrix_illustration',64'plot_binary_confusion_matrix',65'plot_decision_threshold',66'plot_dbscan',67'plot_ridge_n_samples'68]697071