Commit 99945a88 authored by DrZomgwtfbbq's avatar DrZomgwtfbbq Committed by GitHub
Browse files

Updating Softmax bias comment

parent 91c7b91f
...@@ -210,7 +210,7 @@ class Word2Vec(object): ...@@ -210,7 +210,7 @@ class Word2Vec(object):
tf.zeros([opts.vocab_size, opts.emb_dim]), tf.zeros([opts.vocab_size, opts.emb_dim]),
name="sm_w_t") name="sm_w_t")
# Softmax bias: [emb_dim]. # Softmax bias: [vocab_size].
sm_b = tf.Variable(tf.zeros([opts.vocab_size]), name="sm_b") sm_b = tf.Variable(tf.zeros([opts.vocab_size]), name="sm_b")
# Global step: scalar, i.e., shape []. # Global step: scalar, i.e., shape [].
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment