Any ways to use a RNN cell with Universal Sentence Encoder #437
Unanswered
thomasmartin1783
asked this question in
Q&A
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
USE (Universal Sentence Encoder) takes a variable length text as input and outputs a 512 dimensional feature vector as we know.
RNN cell takes 3 parameters as input.
[batch_size, timesteps, output_size]
So, my question is after encoding with Universal Sentence Encoder how can we pass these outputs to a RNN cell with takes 3 parameters while we only get (None, 512) from USE
Beta Was this translation helpful? Give feedback.
All reactions