Pre-model Interpretability and Explainability

0.0(0)
Studied by 0 people
call kaiCall Kai
Locked
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
GameKnowt Play
Card Sorting

1/29

flashcard set

Earn XP

Description and Tags

Vocabulary flashcards covering key terms and definitions in pre-modeling explainability, exploratory data analysis, statistical measures, and feature engineering.

Last updated 8:55 PM on 8/28/26
Name
Mastery
Learn
Test
Matching
Spaced
Call with Kai
Chat

No analytics yet

Send a link to your students to track their progress

30 Terms

1
New cards

Pre-Modeling Explainability

The process of gaining insights into datasets before model building using techniques to understand data quality, distributions, and structure to support model explainability.

2
New cards

Exploratory Data Analysis (EDA)

A collection of statistical techniques and visualizations used to analyze data distribution, quality, relationships between features, and potential model bias.

3
New cards

Univariate Analysis

Statistical and graphical techniques focused on analyzing a single feature at a time to examine characteristics such as spread, range, and central tendency.

4
New cards

Multivariate Analysis

Analysis techniques used when multiple features interact, capturing local and global relationships across continuous and categorical data.

5
New cards

Mean

A central value around which data is distributed, calculated mathematically as μ=1Ni=1Nxi\mu = \frac{1}{N} \sum_{i=1}^N x_i.

6
New cards

Variance

The average squared deviation of data points from the mean, represented as σ2=1Ni=1N(xiμ)2\sigma^2 = \frac{1}{N} \sum_{i=1}^N (x_i - \mu)^2.

7
New cards

Standard Deviation

The typical distance of data points from the mean, calculated as the square root of variance σ=σ2\sigma = \sqrt{\sigma^2}.

8
New cards

Skewness

A statistical measure that quantifies the asymmetry of a distribution relative to its mean, calculated as γ1=μ3σ3\gamma_1 = \frac{\mu_3}{\sigma^3}.

9
New cards

Kurtosis

A statistical measure representing the tailedness of a distribution, calculated as γ2=μ4σ4\gamma_2 = \frac{\mu_4}{\sigma^4}.

10
New cards

Excess Kurtosis

A statistic comparing a distribution's tailedness to a normal distribution, defined as γ23\gamma_2 - 3.

11
New cards

Pivot Table

A summarization tool that reorganizes and aggregates data by grouping rows and columns and applying functions such as sum or mean.

12
New cards

Cross-Tabulation

A quantitative method (contingency table) used to analyze the relationship between two or more categorical variables using frequency counts or percentages.

13
New cards

Box Plot

A visual representation summarizing a dataset using five metrics: median (Q2), quartiles (Q1, Q3), whiskers (1.5×IQR1.5 \times IQR), and individual outliers.

14
New cards

Distribution Plot

A chart visualizing data distribution using histograms for binned frequency counts and Kernel Density Estimation (KDE) for smooth density estimation.

15
New cards

Violin Plot

A visualization technique combining a boxplot with a Kernel Density Estimation (KDE) plot to showcase data density and shape.

16
New cards

Joint Distribution Plot

A bivariate visual method used to reveal local interactions between two continuous features using density estimates, histograms, or hexbin plots.

17
New cards

Heatmap

A graphical encoding of a pairwise correlation matrix where feature associations are colored based on correlation measures.

18
New cards

Spearman Rank Correlation

A non-parametric correlation metric that assesses monotonic relationships using the ranks of observations instead of raw values.

19
New cards

Parallel Coordinate Plot

A visualization technique that projects high-dimensional data onto two dimensions by drawing individual data points as polylines across parallel vertical axes.

20
New cards

Principal Component Analysis (PCA)

A linear dimensionality reduction technique that creates orthogonal principal components as linear combinations of original features to maximize captured variance.

21
New cards

Biplot

A composite visualization combining PCA scores and a loading plot to illustrate how raw features influence principal components in direction and magnitude.

22
New cards

t-SNE

t-Distributed Stochastic Neighbor Embedding; a non-linear dimensionality reduction technique that preserves local neighborhood structures using a perplexity parameter.

23
New cards

Isomap

Isometric Mapping; a non-linear dimensionality reduction method based on spectral theory that preserves geodesic distances across a neighborhood graph.

24
New cards

Autocorrelation

A measure of the linear relationship between a time-series variable and its lagged values.

25
New cards

Differencing

A time-series transformation computing the difference between consecutive observations to eliminate non-stationarity.

26
New cards

Topic Modeling

An unsupervised natural language processing approach (such as LDA) that models documents as probability distributions over topics and topics as distributions over terms.

27
New cards

Filter-based Feature Selection

A fast, model-independent feature selection approach that evaluates feature importance using statistical metrics like variance thresholds, Chi-squared, or ANOVA.

28
New cards

Fisher Score (F-score)

A feature selection metric measuring discriminatory power by comparing feature variance between classes to feature variance within classes.

29
New cards

Wrapper-based Feature Selection

A feature selection method that utilizes a machine learning algorithm directly to evaluate and optimize feature subsets based on predictive performance.

30
New cards

Embedded Feature Selection

A feature selection strategy integrated directly into model training, such as regularization methods (L1 Lasso, L2 Ridge) or tree-based splits.