CategoricalEntailmentEnsembleClassifierAdd Method

Adds to this instance a CategoricalEntailment object having the specified premises on feature variables, derived response category, and truth value.

Definition

Namespace: Novacta.Analytics
Assembly: Novacta.Analytics (in Novacta.Analytics.dll) Version: 2.1.0+428f3840cfab98dda567bb0ed350b302533e273a
C#
public void Add(
	IList<SortedSet<double>> featurePremises,
	double responseConclusion,
	double truthValue
)

Parameters

featurePremises  IListSortedSetDouble
The list of premises the entailment defines about its FeatureVariables.
responseConclusion  Double
The category of ResponseVariable derived by the entailment when its FeaturePremises are satisfied.
truthValue  Double
The eventually partial truth value assigned to the entailment.

Remarks

A premise can be empty, but in such case it is represented as matching the corresponding feature domain. Equivalently, a premise which is not a nonempty proper subset of the domain is always valid for every item in the feature space.

Exceptions

ArgumentNullExceptionfeaturePremises is null.
ArgumentOutOfRangeExceptiontruthValue is negative.
-or-
truthValue is greater than unity.
ArgumentExceptionfeaturePremises has not the same Count of the FeatureVariables of this instance.
-or-
Some set in featurePremises contains a value which is not a category code in the corresponding variable of FeatureVariables.

See Also