All Projects → danielfrg → Word2vec

danielfrg / Word2vec

Licence: apache-2.0
Python interface to Google word2vec

Programming Languages

python
139335 projects - #7 most used programming language
c
50402 projects - #5 most used programming language
Makefile
30231 projects
Dockerfile
14818 projects

Projects that are alternatives of or similar to Word2vec

GE-FSG
Graph Embedding via Frequent Subgraphs
Stars: ✭ 39 (-98.35%)
Mutual labels:  word2vec, doc2vec
Product-Categorization-NLP
Multi-Class Text Classification for products based on their description with Machine Learning algorithms and Neural Networks (MLP, CNN, Distilbert).
Stars: ✭ 30 (-98.73%)
Mutual labels:  word2vec, doc2vec
doc2vec-api
document embedding and machine learning script for beginners
Stars: ✭ 92 (-96.12%)
Mutual labels:  word2vec, doc2vec
Embedding
Embedding模型代码和学习笔记总结
Stars: ✭ 25 (-98.95%)
Mutual labels:  word2vec, doc2vec
doc2vec-golang
doc2vec , word2vec, implemented by golang. word embedding representation
Stars: ✭ 33 (-98.61%)
Mutual labels:  word2vec, doc2vec
altair
Assessing Source Code Semantic Similarity with Unsupervised Learning
Stars: ✭ 42 (-98.23%)
Mutual labels:  word2vec, doc2vec
Webvectors
Web-ify your word2vec: framework to serve distributional semantic models online
Stars: ✭ 154 (-93.5%)
Mutual labels:  word2vec
Debiaswe
Remove problematic gender bias from word embeddings.
Stars: ✭ 175 (-92.62%)
Mutual labels:  word2vec
Graphwavemachine
A scalable implementation of "Learning Structural Node Embeddings Via Diffusion Wavelets (KDD 2018)".
Stars: ✭ 151 (-93.63%)
Mutual labels:  word2vec
Word2vec Spam Filter
Using word vectors to classify spam messages
Stars: ✭ 149 (-93.71%)
Mutual labels:  word2vec
Shallowlearn
An experiment about re-implementing supervised learning models based on shallow neural network approaches (e.g. fastText) with some additional exclusive features and nice API. Written in Python and fully compatible with Scikit-learn.
Stars: ✭ 196 (-91.73%)
Mutual labels:  word2vec
Text Pairs Relation Classification
About Text Pairs (Sentence Level) Classification (Similarity Modeling) Based on Neural Network.
Stars: ✭ 182 (-92.32%)
Mutual labels:  word2vec
Wordvectors
Pre-trained word vectors of 30+ languages
Stars: ✭ 2,043 (-13.8%)
Mutual labels:  word2vec
Text2vec
text2vec, chinese text to vetor.(文本向量化表示工具,包括词向量化、句子向量化、句子相似度计算)
Stars: ✭ 155 (-93.46%)
Mutual labels:  word2vec
Splitter
A Pytorch implementation of "Splitter: Learning Node Representations that Capture Multiple Social Contexts" (WWW 2019).
Stars: ✭ 177 (-92.53%)
Mutual labels:  word2vec
Skip Gram Pytorch
A complete pytorch implementation of skip-gram
Stars: ✭ 153 (-93.54%)
Mutual labels:  word2vec
Nlp learning
结合python一起学习自然语言处理 (nlp): 语言模型、HMM、PCFG、Word2vec、完形填空式阅读理解任务、朴素贝叶斯分类器、TFIDF、PCA、SVD
Stars: ✭ 188 (-92.07%)
Mutual labels:  word2vec
Embedding As Service
One-Stop Solution to encode sentence to fixed length vectors from various embedding techniques
Stars: ✭ 151 (-93.63%)
Mutual labels:  word2vec
Log Anomaly Detector
Log Anomaly Detection - Machine learning to detect abnormal events logs
Stars: ✭ 169 (-92.87%)
Mutual labels:  word2vec
Sentence Similarity
对四种句子/文本相似度计算方法进行实验与比较
Stars: ✭ 181 (-92.36%)
Mutual labels:  word2vec

word2vec

pypi build coverage license

Python interface to Google word2vec.

Training is done using the original C code, other functionality is pure Python with numpy.

Installation

pip install word2vec

Compilation

The installation requires to compile the original C code using gcc.

You can override the compilation flags if needed:

WORD2VEC_CFLAGS='-march=corei7' pip install word2vec

Windows: There is basic some support for this support based on this win32 port.

Usage

Example notebook: word2vec

The default functionality from word2vec is available with the following commands:

  • word2vec
  • word2phrase
  • word2vec-distance
  • word2vec-word-analogy
  • word2vec-compute-accuracy

Experimental functionality on doc2vec can be found in this example: doc2vec

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].