Enum Word2VecType
Specifies the architecture type for Word2Vec models.
public enum Word2VecType
Fields
CBOW = 0Continuous Bag of Words: Predicts the target word from context words. Faster to train, better for frequent words.
SkipGram = 1Skip-Gram: Predicts context words from the target word. Works well with small amount of data, represents rare words well.