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

SSE Model pertained word vectors loading #22

Open
Shuailong opened this issue Feb 11, 2019 · 3 comments
Open

SSE Model pertained word vectors loading #22

Shuailong opened this issue Feb 11, 2019 · 3 comments

Comments

@Shuailong
Copy link

Hi Wuwei,

Thanks for sharing the code and learned from your code! I have a small question below:

I found that for other models you use from torchtext.vocab import load_word_vectors to load pretrained word vectors while for SSE model, you directly use torch.load(EMB_FILE) to load the pickled embeddings. However, I could not find the embedding files in the data folder you provided. Could you please upload this file?

Thanks!

Regards,
Shuailong

@lanwuwei
Copy link
Owner

Hi Shuailong,

When you specify the embedding path and name, torchtext will automatically download data from GloVe website: https://nlp.stanford.edu/projects/glove/ , which is saved into your local machine.

Best,
Wuwei

@Shuailong
Copy link
Author

Hi Shuailong,

When you specify the embedding path and name, torchtext will automatically download data from GloVe website: https://nlp.stanford.edu/projects/glove/ , which is saved into your local machine.

Best,
Wuwei

So How shall I set the EMB_FILE variable?

@lanwuwei
Copy link
Owner

just run this command:
wv_dict, wv_arr, wv_size = load_word_vectors('/your/local/path/', 'glove.840B', 300)
It will download glove.840B.300d.zip
Note: the torchtext version in my code is 0.1.1

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