All Projects → Andras7 → word2vec-pytorch

Andras7 / word2vec-pytorch

Licence: other
Extremely simple and fast word2vec implementation with Negative Sampling + Sub-sampling

Programming Languages

python
139335 projects - #7 most used programming language

Projects that are alternatives of or similar to word2vec-pytorch

Embedding
Embedding模型代码和学习笔记总结
Stars: ✭ 25 (-82.76%)
Mutual labels:  word2vec, negative-sampling
Text-Analysis
Explaining textual analysis tools in Python. Including Preprocessing, Skip Gram (word2vec), and Topic Modelling.
Stars: ✭ 48 (-66.9%)
Mutual labels:  word2vec, skipgram
game2vec
TensorFlow implementation of word2vec applied on https://www.kaggle.com/tamber/steam-video-games dataset, using both CBOW and Skip-gram.
Stars: ✭ 62 (-57.24%)
Mutual labels:  word2vec, skipgram
Word2Vec-iOS
Word2Vec iOS port
Stars: ✭ 23 (-84.14%)
Mutual labels:  word2vec
two-stream-cnn
A two-stream convolutional neural network for learning abitrary similarity functions over two sets of training data
Stars: ✭ 24 (-83.45%)
Mutual labels:  word2vec
Word-Embeddings-and-Document-Vectors
An evaluation of word-embeddings for classification
Stars: ✭ 32 (-77.93%)
Mutual labels:  word2vec
Name-disambiguation
同名论文消歧的工程化方案(参考2019智源-aminer人名消歧竞赛第一名方案)
Stars: ✭ 17 (-88.28%)
Mutual labels:  word2vec
Vaaku2Vec
Language Modeling and Text Classification in Malayalam Language using ULMFiT
Stars: ✭ 68 (-53.1%)
Mutual labels:  word2vec
MixGCF
MixGCF: An Improved Training Method for Graph Neural Network-based Recommender Systems, KDD2021
Stars: ✭ 73 (-49.66%)
Mutual labels:  negative-sampling
wordvector be
Web服务:使用腾讯 800 万词向量模型和 spotify annoy 引擎得到相似关键词
Stars: ✭ 92 (-36.55%)
Mutual labels:  wordembeddings
asm2vec
An unofficial implementation of asm2vec as a standalone python package
Stars: ✭ 127 (-12.41%)
Mutual labels:  word2vec
skip-gram-Chinese
skip-gram for Chinese word2vec base on tensorflow
Stars: ✭ 20 (-86.21%)
Mutual labels:  word2vec
stackoverflow-semantic-search
Word2Vec encodings based search engine for Stackoverflow questions
Stars: ✭ 23 (-84.14%)
Mutual labels:  word2vec
Recommendation-based-on-sequence-
Recommendation based on sequence
Stars: ✭ 23 (-84.14%)
Mutual labels:  word2vec
wordmap
Visualize large text collections with WebGL
Stars: ✭ 23 (-84.14%)
Mutual labels:  word2vec
Word2VecAndTsne
Scripts demo-ing how to train a Word2Vec model and reduce its vector space
Stars: ✭ 45 (-68.97%)
Mutual labels:  word2vec
receiptdID
Receipt.ID is a multi-label, multi-class, hierarchical classification system implemented in a two layer feed forward network.
Stars: ✭ 22 (-84.83%)
Mutual labels:  word2vec
word2vec-movies
Bag of words meets bags of popcorn in Python 3 中文教程
Stars: ✭ 54 (-62.76%)
Mutual labels:  word2vec
hyperstar
Hyperstar: Negative Sampling Improves Hypernymy Extraction Based on Projection Learning.
Stars: ✭ 24 (-83.45%)
Mutual labels:  word2vec
doc2vec-api
document embedding and machine learning script for beginners
Stars: ✭ 92 (-36.55%)
Mutual labels:  word2vec

Word2vec Pytorch

Fast word2vec implementation at competitive speed compared with fasttext. The slowest part is the python data loader. Indeed, Python isn't the fastest programming language, maybe you can improve the code :)

Advantages

  • Easy to understand, solid code
  • Easy to extend for new experiments
  • You can try advanced learning optimizers, with new learning technics
  • GPU support

Supported features

  • Skip-gram
  • Batch update
  • Cosine Annealing
  • Negative Sampling
  • Sub-sampling of frequent word
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].