Python Word2vec using well-trained models to generate word vectors

Source: Internet
Author: User

#text file must be utf-8 no BOM format fromGensim.models.deprecated.word2vecImportWord2vecmodel=Word2vec.load ('./model/word60.model')#3 files in one place: Word60.model Word60.model.syn0.npy Word60.model.syn1neg.npyPrint("Read model Successful") Word_list= ['the',            'words that don't exist',            'of the',            'I'm',            'You're',            'his',            'a',            '1',            'Complete',            'Eat',            'Apple',            'Banana',            'Glossary',            'Physical',            'Earth',            'Black Death',            'plague',            "', ] forWordinchword_list:ifWordinchModel.index2word:vec=Model[word]Print(Word,vec)Else:        Print(Word +'\t\t\t--not in the glossary'+'\ n')

The model files are as follows:

Link: https://pan.baidu.com/s/1c7V91VcWbHPBFIfmtWGb2g Password: MGPs

If the sharing expires can leave a message or email contact.

Python Word2vec using well-trained models to generate word vectors

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.