Table of Contents

Enum Word2VecType

Namespace
AiDotNet.Enums
Assembly
AiDotNet.dll

Specifies the architecture type for Word2Vec models.

public enum Word2VecType

Fields

CBOW = 0

Continuous Bag of Words: Predicts the target word from context words. Faster to train, better for frequent words.

SkipGram = 1

Skip-Gram: Predicts context words from the target word. Works well with small amount of data, represents rare words well.