Table of Contents

Class PartialDependenceData<T>

Namespace
AiDotNet.Interpretability
Assembly
AiDotNet.dll

Represents partial dependence data showing how features affect predictions.

public class PartialDependenceData<T>

Type Parameters

T

The numeric type for calculations.

Inheritance
PartialDependenceData<T>
Inherited Members

Constructors

PartialDependenceData()

Initializes a new instance of the PartialDependenceData class.

public PartialDependenceData()

Properties

FeatureIndices

Gets or sets the feature indices analyzed.

public Vector<int> FeatureIndices { get; set; }

Property Value

Vector<int>

GridResolution

Gets or sets the grid resolution used.

public int GridResolution { get; set; }

Property Value

int

GridValues

Gets or sets the grid values used for each feature. Keys are feature indices, values are the grid points.

public Dictionary<int, Vector<T>> GridValues { get; set; }

Property Value

Dictionary<int, Vector<T>>

IceCurves

Gets or sets individual conditional expectation (ICE) curves if available.

public List<Matrix<T>> IceCurves { get; set; }

Property Value

List<Matrix<T>>

PartialDependenceValues

Gets or sets the partial dependence values.

public Matrix<T> PartialDependenceValues { get; set; }

Property Value

Matrix<T>