aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/examples/udacity/5_word2vec.ipynb
diff options
context:
space:
mode:
Diffstat (limited to 'tensorflow/examples/udacity/5_word2vec.ipynb')
-rw-r--r--tensorflow/examples/udacity/5_word2vec.ipynb2
1 files changed, 1 insertions, 1 deletions
diff --git a/tensorflow/examples/udacity/5_word2vec.ipynb b/tensorflow/examples/udacity/5_word2vec.ipynb
index 9d4243d7ae..18c456cad7 100644
--- a/tensorflow/examples/udacity/5_word2vec.ipynb
+++ b/tensorflow/examples/udacity/5_word2vec.ipynb
@@ -806,7 +806,7 @@
"source": [
"num_points = 400\n",
"\n",
- "tsne = TSNE(perplexity=30, n_components=2, init='pca', n_iter=5000)\n",
+ "tsne = TSNE(perplexity=30, n_components=2, init='pca', n_iter=5000, method='exact')\n",
"two_d_embeddings = tsne.fit_transform(final_embeddings[1:num_points+1, :])"
],
"outputs": [],