Skip to content

Commit d75d2d7

Browse files
author
vighneshbirodkar
committed
Pushing the docs for revision for branch: latex, commit 91df00f0c39621c525bc74d55d4edc3e078f01d3
1 parent 465029d commit d75d2d7

File tree

859 files changed

+2894
-2850
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

859 files changed

+2894
-2850
lines changed

dev/_downloads/plot_kernel_ridge_regression.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -100,9 +100,8 @@
100100
#############################################################################
101101
# look at the results
102102
sv_ind = svr.best_estimator_.support_
103-
plt.scatter(X[sv_ind], y[sv_ind], c='r', s=50, label='SVR support vectors',
104-
zorder=2)
105-
plt.scatter(X[:100], y[:100], c='k', label='data', zorder=1)
103+
plt.scatter(X[sv_ind], y[sv_ind], c='r', s=50, label='SVR support vectors')
104+
plt.scatter(X[:100], y[:100], c='k', label='data')
106105
plt.hold('on')
107106
plt.plot(X_plot, y_svr, c='r',
108107
label='SVR (fit: %.3fs, predict: %.3fs)' % (svr_fit, svr_predict))

dev/_downloads/plot_svm_anova.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
SVM-Anova: SVM with univariate feature selection
44
=================================================
55
6-
This example shows how to perform univariate feature selection before running a
7-
SVC (support vector classifier) to improve the classification scores.
6+
This example shows how to perform univariate feature before running a SVC
7+
(support vector classifier) to improve the classification scores.
88
"""
99
print(__doc__)
1010

-117 Bytes
-117 Bytes
-307 Bytes
-307 Bytes
14 Bytes
270 Bytes
270 Bytes

0 commit comments

Comments
 (0)