Skip to content

Commit

Permalink
Merge pull request #2 from kenfehling/patch-1
Browse files Browse the repository at this point in the history
Remove parameter from plt.show()
  • Loading branch information
graykode committed Feb 2, 2019
2 parents 96e1071 + 7efa1b2 commit 9269445
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion 1-2.Word2Vec/Word2Vec-Torch(Softmax).py
Expand Up @@ -90,4 +90,4 @@ def forward(self, X):
x,y = float(W[i][0]), float(W[i][1])
plt.scatter(x, y)
plt.annotate(label, xy=(x, y), xytext=(5, 2), textcoords='offset points', ha='right', va='bottom')
plt.show(word_list)
plt.show()

0 comments on commit 9269445

Please sign in to comment.