Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
Download

📚 The CoCalc Library - books, templates and other resources

132928 views
License: OTHER
1
from .plot_linear_svc_regularization import plot_linear_svc_regularization
2
from .plot_interactive_tree import plot_tree_progressive, plot_tree_partition
3
from .plot_animal_tree import plot_animal_tree
4
from .plot_rbf_svm_parameters import plot_svm
5
from .plot_knn_regression import plot_knn_regression
6
from .plot_knn_classification import plot_knn_classification
7
from .plot_2d_separator import plot_2d_classification, plot_2d_separator
8
from .plot_nn_graphs import (plot_logistic_regression_graph,
9
plot_single_hidden_layer_graph,
10
plot_two_hidden_layer_graph)
11
from .plot_linear_regression import plot_linear_regression_wave
12
from .plot_tree_nonmonotonous import plot_tree_not_monotone
13
from .plot_scaling import plot_scaling
14
from .plot_pca import plot_pca_illustration, plot_pca_whitening, plot_pca_faces
15
from .plot_decomposition import plot_decomposition
16
from .plot_nmf import plot_nmf_illustration, plot_nmf_faces
17
from .plot_helpers import cm2, cm3
18
from .plot_agglomerative import plot_agglomerative, plot_agglomerative_algorithm
19
from .plot_kmeans import plot_kmeans_algorithm, plot_kmeans_boundaries, plot_kmeans_faces
20
from .plot_improper_preprocessing import plot_improper_processing, plot_proper_processing
21
from .plot_cross_validation import (plot_threefold_split, plot_group_kfold,
22
plot_shuffle_split, plot_cross_validation,
23
plot_stratified_cross_validation)
24
25
from .plot_grid_search import plot_grid_search_overview, plot_cross_val_selection
26
from .plot_metrics import (plot_confusion_matrix_illustration,
27
plot_binary_confusion_matrix,
28
plot_decision_threshold)
29
from .plot_dbscan import plot_dbscan
30
from .plot_ridge import plot_ridge_n_samples
31
32
__all__ = ['plot_linear_svc_regularization',
33
"plot_animal_tree", "plot_tree_progressive",
34
'plot_tree_partition', 'plot_svm',
35
'plot_knn_regression',
36
'plot_logistic_regression_graph',
37
'plot_single_hidden_layer_graph',
38
'plot_two_hidden_layer_graph',
39
'plot_2d_classification',
40
'plot_2d_separator',
41
'plot_knn_classification',
42
'plot_linear_regression_wave',
43
'plot_tree_not_monotone',
44
'plot_scaling',
45
'plot_pca_illustration',
46
'plot_pca_faces',
47
'plot_pca_whitening',
48
'plot_decomposition',
49
'plot_nmf_illustration',
50
'plot_nmf_faces',
51
'plot_agglomerative',
52
'plot_agglomerative_algorithm',
53
'plot_kmeans_boundaries',
54
'plot_kmeans_algorithm',
55
'plot_kmeans_faces',
56
'cm3', 'cm2', 'plot_improper_processing', 'plot_proper_processing',
57
'plot_group_kfold',
58
'plot_shuffle_split',
59
'plot_stratified_cross_validation',
60
'plot_threefold_split',
61
'plot_cross_validation',
62
'plot_grid_search_overview',
63
'plot_cross_val_selection',
64
'plot_confusion_matrix_illustration',
65
'plot_binary_confusion_matrix',
66
'plot_decision_threshold',
67
'plot_dbscan',
68
'plot_ridge_n_samples'
69
]
70
71