简单demo的代码路径在tensorflow\tensorflow\g3doc\tutorials\word2vec\word2vec_basic.py Sikp gram方式的model思路 http://tensorflow.org/tutorials/word2vec/index.md 另外可...
分类:
其他好文 时间:
2015-11-19 11:10:25
阅读次数:
344
[root@localhost trunk]# makegcc word2vec.c -o word2vec -lm -pthread -O3 -march=native -Wall -funroll-loops -Wno-unused-resultgcc word2phrase.c -o word...
分类:
其他好文 时间:
2015-08-28 15:03:24
阅读次数:
319
Algorithm:Refrence from one ICML15 paper: Word Mover's Distance.1. First use Google's word2vec tool to get distributed word representing aka. word vec...
分类:
其他好文 时间:
2015-08-12 23:22:04
阅读次数:
191
http://202.38.128.96:96/nlpir/#box-6里面Word2vec比较不错,Python的gensim库可以做来自为知笔记(Wiz)
分类:
其他好文 时间:
2015-08-10 01:53:23
阅读次数:
283
NLP 分词或word2vec之前,一般都需要先进行标点符号的预处理,直接上解决的代码,精简。#!/usr/bin/env python# coding=utf-8from string import punctuationimport reimport sysreload(sys)sys.setd...
分类:
其他好文 时间:
2015-07-27 18:13:23
阅读次数:
316
#include
#include
#include
#include
#include #define MAX_STRING 100
#define EXP_TABLE_SIZE 1000
#define MAX_EXP 6
#define MAX_SENTENCE_LENGTH 1000
#d...
分类:
其他好文 时间:
2015-07-08 19:04:55
阅读次数:
252
序Word2Vec原生是不支持Windows的,索性就用Qt移植了一下。大概做了下面几件事。①替换LinuxAPI的pthread为QThread。②取消了posix_memalign(),内存对齐这玩意据说是编译器的活,不知道Mikolov为什么写出来,难道说源码是Google万能工程师+编译器高...
分类:
其他好文 时间:
2015-06-30 18:04:43
阅读次数:
180
Reference:http://blog.csdn.net/itplus/article/details/37969519 (Word2Vec解析(部分有错))源码:https://github.com/danielfrg/word2vec (Python封装C版,原Code.Google被墙了)...
分类:
其他好文 时间:
2015-06-26 19:27:24
阅读次数:
686
参考资料:http://ir.dlut.edu.cn/NewsShow.aspx?ID=291http://www.douban.com/note/298095260/http://machinelearning.wustl.edu/mlpapers/paper_files/BengioDVJ03....
分类:
其他好文 时间:
2015-06-18 19:07:51
阅读次数:
326