aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/examples/udacity
diff options
context:
space:
mode:
authorGravatar Jonathan Hseu <jhseu@google.com>2017-07-19 15:04:52 -0700
committerGravatar TensorFlower Gardener <gardener@tensorflow.org>2017-07-19 15:12:25 -0700
commit9cc871e81c04ed11829c3364546b4500742140eb (patch)
tree15c55ff29356bddd5a4f252630a9dffc8ac43c4c /tensorflow/examples/udacity
parent1fefe92f47ff4149428409847592ec443f1279dd (diff)
Merge changes from github.
END_PUBLIC --- Commit daa67ad17 authored by Jonathan Hseu<vomjom@vomjom.net> Committed by Frank Chen<frankchn@gmail.com>: Remove unittest import (#11596) --- Commit 491beb74c authored by A. Unique TensorFlower<gardener@tensorflow.org> Committed by TensorFlower Gardener<gardener@tensorflow.org>: BEGIN_PUBLIC Automated g4 rollback of changelist 162423171 PiperOrigin-RevId: 162541442
Diffstat (limited to 'tensorflow/examples/udacity')
-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": [],