You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have used a script from another StackGAN repo to generate embeddings for sentences. The result for a set of sentences when I load in the t7 file and convert it numpy is a 2D matrix - where there is a 1 dimensional embedding for each sentence - this is to be expected.
However, when I look at the code for this repo is shows the below reference: t_embeddings[:, i, :]
indicating that t_embeddings is 3D - where does the extra dimension come from?