Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

How can I use pre-embedded data in this model? #5

Open
andymogul opened this issue Jun 18, 2017 · 1 comment
Open

How can I use pre-embedded data in this model? #5

andymogul opened this issue Jun 18, 2017 · 1 comment

Comments

@andymogul
Copy link

I'm trying to use pre-embedded data as input. It means I don't want to use embedding layer of model.
How should I do this? Need for help.

@GiteshKhanna
Copy link

GiteshKhanna commented Jun 26, 2018

Hi andy!

try adding this

`

        embedding_variable = tf.Variable(tf.constant(0.0, shape = [self.encoder_vocab_size, embedding_size]),trainable = False, name = 'embedding')
                       
        self.encoder_embedding_placeholder = tf.placeholder(tf.float32, shape=[self.encoder_vocab_size,embedding_size], name = 'embedding_placeholder' )
        self.encoder_embeddings = embedding_variable.assign(self.encoder_embedding_placeholder)
        self.encoder_inputs_embedded=tf.nn.embedding_lookup(self.encoder_embeddings,self.encoder_inputs)`

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants