Enum InteractionType
- Namespace
- AiDotNet.Preprocessing.FeatureGeneration
- Assembly
- AiDotNet.dll
Specifies the type of feature interactions to generate.
public enum InteractionType
Fields
AllPairs = 2All ordered pairs (a×b and b×a both included).
Pairwise = 0Pairwise interactions only (a×b, a×c, b×c). No self-interaction.
WithSelf = 1Pairwise plus self-interaction (includes a², b², c²).