Skip to content

Type Alias: BayesianEffectDto

@kortexya/reasoninglayer


@kortexya/reasoninglayer / Inference / BayesianEffectDto

Type Alias: BayesianEffectDto

BayesianEffectDto = { mean: number; shape: "gaussian"; stdDev: number; } | { a: number; b: number; c: number; shape: "triangular"; } | { a: number; b: number; c: number; d: number; shape: "trapezoidal"; }

Defined in: src/types/inference.ts:363

A Bayesian effect represented as a fuzzy number shape.

Remarks

Discriminated union using the shape field as discriminator.