We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
感谢群友提供的百度网盘链接,这里有解压好的 glove.6B.200d.txt https://pan.baidu.com/s/1TD7K059UVcxuPazWgtY8Dw
The text was updated successfully, but these errors were encountered:
百度云速度不好的同学可以去「夕小瑶的卖萌屋」公众号,后台回复【glove-200】下载wv_from_bin.pkl文件
Sorry, something went wrong.
感谢群友提供的百度网盘链接,这里有解压好的 glove.6B.200d.txt https://pan.baidu.com/s/1TD7K059UVcxuPazWgtY8Dw 百度云速度不好的同学可以去「夕小瑶的卖萌屋」公众号,后台回复【glove-200】下载wv_from_bin.pkl文件
然后将这个函数:
替换成:
def load_embedding_model(): """ Load GloVe Vectors Return: wv_from_bin: All 400000 embeddings, each lengh 200 """ import pickle inputFile = open('wv_from_bin.pkl', 'rb') wv_from_bin = pickle.load(inputFile) inputFile.close() print("Loaded vocab size %i" % len(wv_from_bin.vocab.keys())) return wv_from_bin
No branches or pull requests
感谢群友提供的百度网盘链接,这里有解压好的 glove.6B.200d.txt
https://pan.baidu.com/s/1TD7K059UVcxuPazWgtY8Dw
The text was updated successfully, but these errors were encountered: