forked from amueller/introduction_to_ml_with_python
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathplots.py
69 lines (67 loc) · 3.2 KB
/
plots.py
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
from .plot_linear_svc_regularization import plot_linear_svc_regularization
from .plot_interactive_tree import plot_tree_progressive, plot_tree_partition
from .plot_animal_tree import plot_animal_tree
from .plot_rbf_svm_parameters import plot_svm
from .plot_knn_regression import plot_knn_regression
from .plot_knn_classification import plot_knn_classification
from .plot_2d_separator import plot_2d_classification, plot_2d_separator
from .plot_nn_graphs import (plot_logistic_regression_graph,
plot_single_hidden_layer_graph,
plot_two_hidden_layer_graph)
from .plot_linear_regression import plot_linear_regression_wave
from .plot_tree_nonmonotonous import plot_tree_not_monotone
from .plot_scaling import plot_scaling
from .plot_pca import plot_pca_illustration, plot_pca_whitening, plot_pca_faces
from .plot_decomposition import plot_decomposition
from .plot_nmf import plot_nmf_illustration, plot_nmf_faces
from .plot_helpers import cm2, cm3
from .plot_agglomerative import plot_agglomerative, plot_agglomerative_algorithm
from .plot_kmeans import plot_kmeans_algorithm, plot_kmeans_boundaries, plot_kmeans_faces
from .plot_improper_preprocessing import plot_improper_processing, plot_proper_processing
from .plot_cross_validation import (plot_threefold_split, plot_group_kfold,
plot_shuffle_split, plot_cross_validation,
plot_stratified_cross_validation)
from .plot_grid_search import plot_grid_search_overview, plot_cross_val_selection
from .plot_metrics import (plot_confusion_matrix_illustration,
plot_binary_confusion_matrix,
plot_decision_threshold)
from .plot_dbscan import plot_dbscan
from .plot_ridge import plot_ridge_n_samples
__all__ = ['plot_linear_svc_regularization',
"plot_animal_tree", "plot_tree_progressive",
'plot_tree_partition', 'plot_svm',
'plot_knn_regression',
'plot_logistic_regression_graph',
'plot_single_hidden_layer_graph',
'plot_two_hidden_layer_graph',
'plot_2d_classification',
'plot_2d_separator',
'plot_knn_classification',
'plot_linear_regression_wave',
'plot_tree_not_monotone',
'plot_scaling',
'plot_pca_illustration',
'plot_pca_faces',
'plot_pca_whitening',
'plot_decomposition',
'plot_nmf_illustration',
'plot_nmf_faces',
'plot_agglomerative',
'plot_agglomerative_algorithm',
'plot_kmeans_boundaries',
'plot_kmeans_algorithm',
'plot_kmeans_faces',
'cm3', 'cm2', 'plot_improper_processing', 'plot_proper_processing',
'plot_group_kfold',
'plot_shuffle_split',
'plot_stratified_cross_validation',
'plot_threefold_split',
'plot_cross_validation',
'plot_grid_search_overview',
'plot_cross_val_selection',
'plot_confusion_matrix_illustration',
'plot_binary_confusion_matrix',
'plot_decision_threshold',
'plot_dbscan',
'plot_ridge_n_samples'
]