Skip to content

Commit

Permalink
Remove incorrect URLs from the code and refer to README.md instead.
Browse files Browse the repository at this point in the history
Fixes tensorflow#54
Change: 130790453
  • Loading branch information
aselle authored and tensorflower-gardener committed Aug 19, 2016
1 parent 0beb771 commit 1c131f2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion tensorflow/models/embedding/word2vec.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@
"eval_data", None, "File consisting of analogies of four tokens."
"embedding 2 - embedding 1 + embedding 3 should be close "
"to embedding 4."
"E.g. https://word2vec.googlecode.com/svn/trunk/questions-words.txt.")
"See README.md for how to get 'questions-words.txt'.")
flags.DEFINE_integer("embedding_size", 200, "The embedding dimension size.")
flags.DEFINE_integer(
"epochs_to_train", 15,
Expand Down
2 changes: 1 addition & 1 deletion tensorflow/models/embedding/word2vec_optimized.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@
"Training data. E.g., unzipped file http://mattmahoney.net/dc/text8.zip.")
flags.DEFINE_string(
"eval_data", None, "Analogy questions. "
"https://word2vec.googlecode.com/svn/trunk/questions-words.txt.")
"See README.md for how to get 'questions-words.txt'.")
flags.DEFINE_integer("embedding_size", 200, "The embedding dimension size.")
flags.DEFINE_integer(
"epochs_to_train", 15,
Expand Down

0 comments on commit 1c131f2

Please sign in to comment.