Skip to content

Commit 90cc0cb

Browse files
committed
Pushing the docs for revision for branch: master, commit 593dbcc073549e21e8a8d371d85e7f4e8f33dcf1
1 parent b85d32b commit 90cc0cb

File tree

2,559 files changed

+55137
-31277
lines changed

Some content is hidden

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

2,559 files changed

+55137
-31277
lines changed

dev/.buildinfo

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
# Sphinx build info version 1
22
# This file hashes the configuration used when building these files. When it is not found, a full rebuild will be done.
3-
config: 0d839c7aff39e2bc97dda02409424dd9
3+
config: 7428c9dd0e2fe5a32dd39c1f52ee5c08
44
tags: 645f666f9bcd5a90fca523b33c5a78b7

dev/_build/html/stable/_static/ML_MAPS_README.html

Lines changed: 0 additions & 251 deletions
This file was deleted.

dev/_downloads/gp_diabetes_dataset.py

Lines changed: 0 additions & 51 deletions
This file was deleted.

dev/_downloads/plot_approximate_nearest_neighbors_hyperparameters.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@
110110
plt.errorbar(n_candidates_values, accuracies_c[i, :],
111111
stds_accuracies[i, :], c=colors[i])
112112

113-
plt.legend(loc='upper left', fontsize='small')
113+
plt.legend(loc='upper left', prop=dict(size='small'))
114114
plt.ylim([0, 1.2])
115115
plt.xlim(min(n_candidates_values), max(n_candidates_values))
116116
plt.ylabel("Accuracy")

dev/_downloads/plot_approximate_nearest_neighbors_scalability.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@
126126
fmt='o-', c='r', label='LSHForest')
127127
plt.plot(n_samples_values, average_times_exact, c='b',
128128
label="NearestNeighbors(algorithm='brute', metric='cosine')")
129-
plt.legend(loc='upper left', fontsize='small')
129+
plt.legend(loc='upper left', prop=dict(size='small'))
130130
plt.ylim(0, None)
131131
plt.ylabel("Average query time in seconds")
132132
plt.xlabel("n_samples")

dev/_downloads/plot_ard.py

Lines changed: 9 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -58,25 +58,27 @@
5858
# weights
5959
plt.figure(figsize=(6, 5))
6060
plt.title("Weights of the model")
61-
plt.plot(clf.coef_, 'b-', label="ARD estimate")
62-
plt.plot(ols.coef_, 'r--', label="OLS estimate")
63-
plt.plot(w, 'g-', label="Ground truth")
61+
plt.plot(clf.coef_, color='darkblue', linestyle='-', linewidth=2,
62+
label="ARD estimate")
63+
plt.plot(ols.coef_, color='yellowgreen', linestyle=':', linewidth=2,
64+
label="OLS estimate")
65+
plt.plot(w, color='orange', linestyle='-', linewidth=2, label="Ground truth")
6466
plt.xlabel("Features")
6567
plt.ylabel("Values of the weights")
6668
plt.legend(loc=1)
6769

6870
plt.figure(figsize=(6, 5))
6971
plt.title("Histogram of the weights")
70-
plt.hist(clf.coef_, bins=n_features, log=True)
71-
plt.plot(clf.coef_[relevant_features], 5 * np.ones(len(relevant_features)),
72-
'ro', label="Relevant features")
72+
plt.hist(clf.coef_, bins=n_features, color='navy', log=True)
73+
plt.scatter(clf.coef_[relevant_features], 5 * np.ones(len(relevant_features)),
74+
color='gold', marker='o', label="Relevant features")
7375
plt.ylabel("Features")
7476
plt.xlabel("Values of the weights")
7577
plt.legend(loc=1)
7678

7779
plt.figure(figsize=(6, 5))
7880
plt.title("Marginal log-likelihood")
79-
plt.plot(clf.scores_)
81+
plt.plot(clf.scores_, color='navy', linewidth=2)
8082
plt.ylabel("Score")
8183
plt.xlabel("Iterations")
8284
plt.show()

0 commit comments

Comments
 (0)