@@ -9,148 +9,148 @@ Data Science examples
9
9
10
10
Jupyter Notebooks
11
11
12
- - `Linear Regression <https://github.com/IntelPython/daal4py/blob /master/examples/daal4py_data_science.ipynb >`_
12
+ - `Linear Regression <https://github.com/intel/scikit-learn-intelex/tree /master/examples/daal4py /daal4py_data_science.ipynb >`_
13
13
14
14
General usage
15
15
-------------
16
16
17
17
Principal Component Analysis (PCA) Transform
18
18
19
- - `Single-Process PCA <https://github.com/IntelPython/daal4py/blob /master/examples/pca_batch.py >`_
20
- - `Multi-Process PCA <https://github.com/IntelPython/daal4py/blob /master/examples/pca_spmd.py >`_
19
+ - `Single-Process PCA <https://github.com/intel/scikit-learn-intelex/tree /master/examples/daal4py /pca_batch.py >`_
20
+ - `Multi-Process PCA <https://github.com/intel/scikit-learn-intelex/tree /master/examples/daal4py /pca_spmd.py >`_
21
21
22
22
Singular Value Decomposition (SVD)
23
23
24
- - `Single-Process PCA Transform <https://github.com/IntelPython/daal4py/blob /master/examples/pca_transform_batch.py >`_
24
+ - `Single-Process PCA Transform <https://github.com/intel/scikit-learn-intelex/tree /master/examples/daal4py /pca_transform_batch.py >`_
25
25
26
- - `Single-Process SVD <https://github.com/IntelPython/daal4py/blob /master/examples/svd_batch.py >`_
27
- - `Streaming SVD <https://github.com/IntelPython/daal4py/blob /master/examples/svd_streaming.py >`_
28
- - `Multi-Process SVD <https://github.com/IntelPython/daal4py/blob /master/examples/svd_spmd.py >`_
26
+ - `Single-Process SVD <https://github.com/intel/scikit-learn-intelex/tree /master/examples/daal4py /svd_batch.py >`_
27
+ - `Streaming SVD <https://github.com/intel/scikit-learn-intelex/tree /master/examples/daal4py /svd_streaming.py >`_
28
+ - `Multi-Process SVD <https://github.com/intel/scikit-learn-intelex/tree /master/examples/daal4py /svd_spmd.py >`_
29
29
30
30
Moments of Low Order
31
31
32
- - `Single-Process Low Order Moments <https://github.com/IntelPython/daal4py/blob /master/examples/low_order_moms_dense_batch.py >`_
33
- - `Streaming Low Order Moments <https://github.com/IntelPython/daal4py/blob /master/examples/low_order_moms_dense_streaming.py >`_
34
- - `Multi-Process Low Order Moments <https://github.com/IntelPython/daal4py/blob /master/examples/low_order_moms_spmd.py >`_
32
+ - `Single-Process Low Order Moments <https://github.com/intel/scikit-learn-intelex/tree /master/examples/daal4py /low_order_moms_dense_batch.py >`_
33
+ - `Streaming Low Order Moments <https://github.com/intel/scikit-learn-intelex/tree /master/examples/daal4py /low_order_moms_dense_streaming.py >`_
34
+ - `Multi-Process Low Order Moments <https://github.com/intel/scikit-learn-intelex/tree /master/examples/daal4py /low_order_moms_spmd.py >`_
35
35
36
36
Correlation and Variance-Covariance Matrices
37
37
38
- - `Single-Process Covariance <https://github.com/IntelPython/daal4py/blob /master/examples/covariance_batch.py >`_
39
- - `Streaming Covariance <https://github.com/IntelPython/daal4py/blob /master/examples/covariance_streaming.py >`_
40
- - `Multi-Process Covariance <https://github.com/IntelPython/daal4py/blob /master/examples/covariance_spmd.py >`_
38
+ - `Single-Process Covariance <https://github.com/intel/scikit-learn-intelex/tree /master/examples/daal4py /covariance_batch.py >`_
39
+ - `Streaming Covariance <https://github.com/intel/scikit-learn-intelex/tree /master/examples/daal4py /covariance_streaming.py >`_
40
+ - `Multi-Process Covariance <https://github.com/intel/scikit-learn-intelex/tree /master/examples/daal4py /covariance_spmd.py >`_
41
41
42
42
Decision Forest Classification
43
43
44
44
- `Single-Process Decision Forest Classification
45
- <https://github.com/IntelPython/daal4py/blob /master/examples/decision_forest_classification_batch.py> `_
45
+ <https://github.com/intel/scikit-learn-intelex/tree /master/examples/daal4py /decision_forest_classification_batch.py> `_
46
46
47
47
Decision Tree Classification
48
48
49
49
- `Single-Process Decision Tree Classification
50
- <https://github.com/IntelPython/daal4py/blob /master/examples/decision_tree_classification_batch.py> `_
50
+ <https://github.com/intel/scikit-learn-intelex/tree /master/examples/daal4py /decision_tree_classification_batch.py> `_
51
51
52
52
Gradient Boosted Classification
53
53
54
54
- `Single-Process Gradient Boosted Classification
55
- <https://github.com/IntelPython/daal4py/blob /master/examples/gradient_boosted_classification_batch.py> `_
55
+ <https://github.com/intel/scikit-learn-intelex/tree /master/examples/daal4py /gradient_boosted_classification_batch.py> `_
56
56
57
57
k-Nearest Neighbors (kNN)
58
58
59
59
- `Single-Process kNN
60
- <https://github.com/IntelPython/daal4py/blob /master/examples/kdtree_knn_classification_batch.py> `_
60
+ <https://github.com/intel/scikit-learn-intelex/tree /master/examples/daal4py /kdtree_knn_classification_batch.py> `_
61
61
62
62
Multinomial Naive Bayes
63
63
64
- - `Single-Process Naive Bayes <https://github.com/IntelPython/daal4py/blob /master/examples/naive_bayes_batch.py >`_
65
- - `Streaming Naive Bayes <https://github.com/IntelPython/daal4py/blob /master/examples/naive_bayes_streaming.py >`_
66
- - `Multi-Process Naive Bayes <https://github.com/IntelPython/daal4py/blob /master/examples/naive_bayes_spmd.py >`_
64
+ - `Single-Process Naive Bayes <https://github.com/intel/scikit-learn-intelex/tree /master/examples/daal4py /naive_bayes_batch.py >`_
65
+ - `Streaming Naive Bayes <https://github.com/intel/scikit-learn-intelex/tree /master/examples/daal4py /naive_bayes_streaming.py >`_
66
+ - `Multi-Process Naive Bayes <https://github.com/intel/scikit-learn-intelex/tree /master/examples/daal4py /naive_bayes_spmd.py >`_
67
67
68
68
Support Vector Machine (SVM)
69
69
70
70
- `Single-Process SVM
71
- <https://github.com/IntelPython/daal4py/blob /master/examples/svm_batch.py> `_
71
+ <https://github.com/intel/scikit-learn-intelex/tree /master/examples/daal4py /svm_batch.py> `_
72
72
73
73
Logistic Regression
74
74
75
75
- `Single-Process Binary Class Logistic Regression
76
- <https://github.com/IntelPython/daal4py/blob /master/examples/log_reg_binary_dense_batch.py> `_
76
+ <https://github.com/intel/scikit-learn-intelex/tree /master/examples/daal4py /log_reg_binary_dense_batch.py> `_
77
77
- `Single-Process Logistic Regression
78
- <https://github.com/IntelPython/daal4py/blob /master/examples/log_reg_dense_batch.py> `_
78
+ <https://github.com/intel/scikit-learn-intelex/tree /master/examples/daal4py /log_reg_dense_batch.py> `_
79
79
80
80
Decision Forest Regression
81
81
82
82
- `Single-Process Decision Forest Regression
83
- <https://github.com/IntelPython/daal4py/blob /master/examples/decision_forest_regression_batch.py> `_
83
+ <https://github.com/intel/scikit-learn-intelex/tree /master/examples/daal4py /decision_forest_regression_batch.py> `_
84
84
85
85
- `Single-Process Decision Tree Regression
86
- <https://github.com/IntelPython/daal4py/blob /master/examples/decision_tree_regression_batch.py> `_
86
+ <https://github.com/intel/scikit-learn-intelex/tree /master/examples/daal4py /decision_tree_regression_batch.py> `_
87
87
88
88
Gradient Boosted Regression
89
89
90
90
- `Single-Process Boosted Regression
91
- <https://github.com/IntelPython/daal4py/blob /master/examples/gradient_boosted_regression_batch.py> `_
91
+ <https://github.com/intel/scikit-learn-intelex/tree /master/examples/daal4py /gradient_boosted_regression_batch.py> `_
92
92
93
93
Linear Regression
94
94
95
- - `Single-Process Linear Regression <https://github.com/IntelPython/daal4py/blob /master/examples/linear_regression_batch.py >`_
96
- - `Streaming Linear Regression <https://github.com/IntelPython/daal4py/blob /master/examples/linear_regression_streaming.py >`_
97
- - `Multi-Process Linear Regression <https://github.com/IntelPython/daal4py/blob /master/examples/linear_regression_spmd.py >`_
95
+ - `Single-Process Linear Regression <https://github.com/intel/scikit-learn-intelex/tree /master/examples/daal4py /linear_regression_batch.py >`_
96
+ - `Streaming Linear Regression <https://github.com/intel/scikit-learn-intelex/tree /master/examples/daal4py /linear_regression_streaming.py >`_
97
+ - `Multi-Process Linear Regression <https://github.com/intel/scikit-learn-intelex/tree /master/examples/daal4py /linear_regression_spmd.py >`_
98
98
99
99
Ridge Regression
100
100
101
- - `Single-Process Ridge Regression <https://github.com/IntelPython/daal4py/blob /master/examples/ridge_regression_batch.py >`_
102
- - `Streaming Ridge Regression <https://github.com/IntelPython/daal4py/blob /master/examples/ridge_regression_streaming.py >`_
103
- - `Multi-Process Ridge Regression <https://github.com/IntelPython/daal4py/blob /master/examples/ridge_regression_spmd.py >`_
101
+ - `Single-Process Ridge Regression <https://github.com/intel/scikit-learn-intelex/tree /master/examples/daal4py /ridge_regression_batch.py >`_
102
+ - `Streaming Ridge Regression <https://github.com/intel/scikit-learn-intelex/tree /master/examples/daal4py /ridge_regression_streaming.py >`_
103
+ - `Multi-Process Ridge Regression <https://github.com/intel/scikit-learn-intelex/tree /master/examples/daal4py /ridge_regression_spmd.py >`_
104
104
105
105
K-Means Clustering
106
106
107
- - `Single-Process K-Means <https://github.com/IntelPython/daal4py/blob /master/examples/kmeans_batch.py >`_
108
- - `Multi-Process K-Means <https://github.com/IntelPython/daal4py/blob /master/examples/kmeans_spmd.py >`_
107
+ - `Single-Process K-Means <https://github.com/intel/scikit-learn-intelex/tree /master/examples/daal4py /kmeans_batch.py >`_
108
+ - `Multi-Process K-Means <https://github.com/intel/scikit-learn-intelex/tree /master/examples/daal4py /kmeans_spmd.py >`_
109
109
110
110
Multivariate Outlier Detection
111
111
112
- - `Single-Process Multivariate Outlier Detection <https://github.com/IntelPython/daal4py/blob /master/examples/multivariate_outlier_batch.py >`_
112
+ - `Single-Process Multivariate Outlier Detection <https://github.com/intel/scikit-learn-intelex/tree /master/examples/daal4py /multivariate_outlier_batch.py >`_
113
113
114
114
Univariate Outlier Detection
115
115
116
- - `Single-Process Univariate Outlier Detection <https://github.com/IntelPython/daal4py/blob /master/examples/univariate_outlier_batch.py >`_
116
+ - `Single-Process Univariate Outlier Detection <https://github.com/intel/scikit-learn-intelex/tree /master/examples/daal4py /univariate_outlier_batch.py >`_
117
117
118
118
Optimization Solvers-Mean Squared Error Algorithm (MSE)
119
119
120
- - `MSE In Adagrad <https://github.com/IntelPython/daal4py/blob /master/examples/adagrad_mse_batch.py >`_
121
- - `MSE In LBFGS <https://github.com/IntelPython/daal4py/blob /master/examples/lbfgs_mse_batch.py >`_
122
- - `MSE In SGD <https://github.com/IntelPython/daal4py/blob /master/examples/sgd_mse_batch.py >`_
120
+ - `MSE In Adagrad <https://github.com/intel/scikit-learn-intelex/tree /master/examples/daal4py /adagrad_mse_batch.py >`_
121
+ - `MSE In LBFGS <https://github.com/intel/scikit-learn-intelex/tree /master/examples/daal4py /lbfgs_mse_batch.py >`_
122
+ - `MSE In SGD <https://github.com/intel/scikit-learn-intelex/tree /master/examples/daal4py /sgd_mse_batch.py >`_
123
123
124
124
Logistic Loss
125
125
126
- - `Logistic Loss SGD <https://github.com/IntelPython/daal4py/blob /master/examples/sgd_logistic_loss_batch.py >`_
126
+ - `Logistic Loss SGD <https://github.com/intel/scikit-learn-intelex/tree /master/examples/daal4py /sgd_logistic_loss_batch.py >`_
127
127
128
128
Stochastic Gradient Descent Algorithm
129
129
130
- - `Stochastic Gradient Descent Algorithm Using Logistic Loss <https://github.com/IntelPython/daal4py/blob /master/examples/sgd_logistic_loss_batch.py >`_
130
+ - `Stochastic Gradient Descent Algorithm Using Logistic Loss <https://github.com/intel/scikit-learn-intelex/tree /master/examples/daal4py /sgd_logistic_loss_batch.py >`_
131
131
- `Stochastic Gradient Descent Algorithm Using MSE <https://github.com/IntelPython/daal4py//blob/master/examples/sgd_mse_batch.py >`_
132
132
133
133
Limited-Memory Broyden-Fletcher-Goldfarb-Shanno Algorithm
134
134
135
- - `Limited-Memory Broyden-Fletcher-Goldfarb-Shanno Algorithm - Using MSE <https://github.com/IntelPython/daal4py/blob /master/examples/lbfgs_mse_batch.py >`_
135
+ - `Limited-Memory Broyden-Fletcher-Goldfarb-Shanno Algorithm - Using MSE <https://github.com/intel/scikit-learn-intelex/tree /master/examples/daal4py /lbfgs_mse_batch.py >`_
136
136
137
137
Adaptive Subgradient Method
138
138
139
- - `Adaptive Subgradient Method Using MSE <https://github.com/IntelPython/daal4py/blob /master/examples/adagrad_mse_batch.py >`_
139
+ - `Adaptive Subgradient Method Using MSE <https://github.com/intel/scikit-learn-intelex/tree /master/examples/daal4py /adagrad_mse_batch.py >`_
140
140
141
141
Cosine Distance Matrix
142
142
143
- - `Single-Process Cosine Distance <https://github.com/IntelPython/daal4py/blob /master/examples/cosine_distance_batch.py >`_
143
+ - `Single-Process Cosine Distance <https://github.com/intel/scikit-learn-intelex/tree /master/examples/daal4py /cosine_distance_batch.py >`_
144
144
145
145
Correlation Distance Matrix
146
146
147
- - `Single-Process Correlation Distance <https://github.com/IntelPython/daal4py/blob /master/examples/correlation_distance_batch.py >`_
147
+ - `Single-Process Correlation Distance <https://github.com/intel/scikit-learn-intelex/tree /master/examples/daal4py /correlation_distance_batch.py >`_
148
148
149
149
Trees
150
150
151
- - `Decision Forest Regression <https://github.com/IntelPython/daal4py/blob /master/examples/decision_forest_regression_traverse_batch.py >`_
152
- - `Decision Forest Classification <https://github.com/IntelPython/daal4py/blob /master/examples/decision_forest_classification_traverse_batch.py >`_
153
- - `Decision Tree Regression <https://github.com/IntelPython/daal4py/blob /master/examples/decision_tree_regression_traverse_batch.py >`_
154
- - `Decision Tree Classification <https://github.com/IntelPython/daal4py/blob /master/examples/decision_tree_classification_traverse_batch.py >`_
155
- - `Gradient Boosted Trees Regression <https://github.com/IntelPython/daal4py/blob /master/examples/gradient_boosted_regression_traverse_batch.py >`_
156
- - `Gradient Boosted Trees Classification <https://github.com/IntelPython/daal4py/blob /master/examples/gradient_boosted_classification_traverse_batch.py >`_
151
+ - `Decision Forest Regression <https://github.com/intel/scikit-learn-intelex/tree /master/examples/daal4py /decision_forest_regression_traverse_batch.py >`_
152
+ - `Decision Forest Classification <https://github.com/intel/scikit-learn-intelex/tree /master/examples/daal4py /decision_forest_classification_traverse_batch.py >`_
153
+ - `Decision Tree Regression <https://github.com/intel/scikit-learn-intelex/tree /master/examples/daal4py /decision_tree_regression_traverse_batch.py >`_
154
+ - `Decision Tree Classification <https://github.com/intel/scikit-learn-intelex/tree /master/examples/daal4py /decision_tree_classification_traverse_batch.py >`_
155
+ - `Gradient Boosted Trees Regression <https://github.com/intel/scikit-learn-intelex/tree /master/examples/daal4py /gradient_boosted_regression_traverse_batch.py >`_
156
+ - `Gradient Boosted Trees Classification <https://github.com/intel/scikit-learn-intelex/tree /master/examples/daal4py /gradient_boosted_classification_traverse_batch.py >`_
0 commit comments