美文网首页
人工智能AI入门 2.2- NLP词向量 word2vec

人工智能AI入门 2.2- NLP词向量 word2vec

作者: YueTan | 来源:发表于2019-03-22 21:50 被阅读0次

    # word2vec

    1 字或者词的one-hot representation,矩阵维度太高且稀疏

    2 word2vec的两种方法,CBOW从周围的词推测单个词,skip-gram从单个词预测周围

    #论文

    ##论文详解

    https://arxiv.org/pdf/1411.2738.pdf

    # 实现

    ## C代码实现

    https://github.com/tmikolov/word2vec/blob/master/word2vec.c

    ## Python 代码实现

    https://github.com/LongxingTan/ML_learning/tree/master/nlp_embedding

    ## Tensorflow实现

    https://github.com/LongxingTan/ML_learning/tree/master/nlp_embedding

    相关文章

      网友评论

          本文标题:人工智能AI入门 2.2- NLP词向量 word2vec

          本文链接:https://www.haomeiwen.com/subject/amolrftx.html