CategoricalEntailment Class

Represents a collection of premises about a set of feature categorical variables that implies a specific response category. The conclusion is entailed by the premises with an eventually partial truth value, ranging between completely false to completely true.

Definition

Namespace: Novacta.Analytics
Assembly: Novacta.Analytics (in Novacta.Analytics.dll) Version: 2.1.0+428f3840cfab98dda567bb0ed350b302533e273a
C#
public class CategoricalEntailment
Inheritance
Object    CategoricalEntailment

Remarks

A CategoricalEntailment instance represents a relationship between a set of FeatureVariables and a corresponding ResponseVariable.

The relationship has the form of an implication from a collection of FeaturePremises, statements about the available features, to a corresponding ResponseConclusion, a category Code in the ResponseVariable.

The conclusion is entailed by the premises with a degree of confirmation represented by the TruthValue of the instance.

Let us assume that items from a given feature space LaTeX equation must be classified into a set LaTeX equation of labels. If LaTeX equation feature variables are taken into account, and if variable LaTeX equation has finite domain LaTeX equation, then LaTeX equation can be represented as the Cartesian product LaTeX equation. A categorical entailment is a triple LaTeX equation, where LaTeX equation is a subset of LaTeX equation representing the FeaturePremises, LaTeX equation is the ResponseConclusion, and LaTeX equation is the TruthValue.

Given a CategoricalDataSet instance in which observations of the FeatureVariables are included, you can check for what of its rows the premises are satisfied by calling method ValidatePremises(CategoricalDataSet, IndexCollection).

Empty feature or response domains are not allowed.

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.

You can't directly instantiate a CategoricalEntailment object. However, categorical entailments can be exploited for classification purposes via CategoricalEntailmentEnsembleClassifier instances. Entailments can be included in such a classifier by calling its method Add(IListSortedSetDouble, Double, Double). They can be populated automatically by executing methods AddTrained(CategoricalDataSet, IndexCollection, Int32, Int32, Boolean, Boolean) or Train(CategoricalDataSet, IndexCollection, Int32, Int32, Boolean, Boolean).

Properties

FeaturePremises Gets the list of premises this instance defines about its FeatureVariables.
FeatureVariables Gets the list of feature variables about which this instance defines its FeaturePremises.
ResponseConclusion Gets the category Code in ResponseVariable derived by this instance when its FeaturePremises are satisfied.
ResponseVariable Gets the response variable from which this instance defines its ResponseConclusion.
TruthValue Gets or sets the eventually partial truth value assigned to this instance.

Methods

EqualsDetermines whether the specified object is equal to the current object.
(Inherited from Object)
FinalizeAllows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection.
(Inherited from Object)
GetHashCodeServes as the default hash function.
(Inherited from Object)
GetTypeGets the Type of the current instance.
(Inherited from Object)
MemberwiseCloneCreates a shallow copy of the current Object.
(Inherited from Object)
ToString Returns a String that represents this instance.
(Overrides ObjectToString)
ValidatePremises Validates that the premises of this instance are satisfied by the categorical items in the specified data set.

See Also