Table of Contents

Enum InteractionType

Namespace
AiDotNet.Preprocessing.FeatureGeneration
Assembly
AiDotNet.dll

Specifies the type of feature interactions to generate.

public enum InteractionType

Fields

AllPairs = 2

All ordered pairs (a×b and b×a both included).

Pairwise = 0

Pairwise interactions only (a×b, a×c, b×c). No self-interaction.

WithSelf = 1

Pairwise plus self-interaction (includes a², b², c²).