The Least Absolute Shrinkage and Selection Operator (LASSO) is a penalized regression technique that applies an L1 regularization penalty to the absolute size of model coefficients, forcing non-predictive feature coefficients to exactly zero. This simultaneous variable selection and shrinkage produces a sparse, interpretable model from high-dimensional radiomic feature sets where the number of extracted features often exceeds the number of patient samples.
Glossary
Least Absolute Shrinkage and Selection Operator (LASSO)

What is Least Absolute Shrinkage and Selection Operator (LASSO)?
A regression analysis method that performs both variable selection and regularization to identify the most predictive radiomic features while preventing overfitting.
By tuning the hyperparameter lambda (λ), LASSO controls the strength of penalization: larger λ values shrink more coefficients to zero, retaining only the most robust radiomic signatures. This property makes LASSO the standard method for building parsimonious predictive models in radiomics-based outcome prediction, where it directly addresses the curse of dimensionality inherent in mining hundreds of texture, shape, and first-order features from medical images.
Key Characteristics of LASSO
LASSO (Least Absolute Shrinkage and Selection Operator) is a linear regression technique that performs automatic feature selection by forcing the sum of the absolute values of the regression coefficients to be less than a fixed value, driving some coefficients to exactly zero.
L1 Regularization Penalty
LASSO adds a penalty equal to the absolute value of the magnitude of coefficients (L1 norm) to the loss function. This constraint shrinks less important feature coefficients to exactly zero, effectively removing them from the model. Unlike Ridge regression (L2), which only shrinks coefficients toward zero, LASSO produces sparse models that are inherently interpretable—critical in radiomics where identifying a small subset of predictive features from thousands of candidates is the primary goal.
Automatic Feature Selection
In high-dimensional radiomic datasets where the number of features (p) often exceeds the number of patients (n), LASSO performs embedded feature selection during model training. The optimization process simultaneously:
- Minimizes prediction error on the training data
- Penalizes model complexity through the L1 constraint
- Eliminates redundant or noisy radiomic features This eliminates the need for separate filter or wrapper selection methods, reducing computational overhead and preventing information leakage between feature selection and model evaluation steps.
The Shrinkage Parameter Lambda
The tuning parameter λ (lambda) controls the strength of regularization. As λ increases:
- More coefficients are driven to exactly zero
- Model variance decreases but bias increases
- The optimal λ is typically selected via k-fold cross-validation The standard approach uses 1-standard-error rule: selecting the largest λ within one standard error of the minimum cross-validation error, yielding the most parsimonious model with predictive performance indistinguishable from the best model.
Handling Multicollinearity
When radiomic features are highly correlated (e.g., multiple texture descriptors capturing similar patterns), LASSO tends to arbitrarily select one feature from the correlated group and zero out the others. This behavior:
- Produces simpler, more interpretable radiomic signatures
- Can lead to instability in feature selection across different data splits
- Is often addressed by stability selection or elastic net (which combines L1 and L2 penalties) Understanding this property is essential when validating radiomic biomarkers across multiple scanner vendors and acquisition protocols.
Coordinate Descent Optimization
LASSO is typically solved using coordinate descent, an iterative algorithm that optimizes one coefficient at a time while holding others fixed. The soft-thresholding operator provides a closed-form update:
- If the partial residual is below the penalty threshold, the coefficient is set to exactly zero
- Otherwise, the coefficient is shrunk by the penalty amount This computational efficiency makes LASSO tractable for radiomic datasets with thousands of candidate features, fitting in seconds rather than the hours required by subset selection methods.
Radiomic Signature Construction
LASSO is the dominant method for building radiomic signatures—composite biomarkers combining multiple quantitative imaging features. The typical workflow:
- Extract 1,000+ radiomic features from segmented tumor volumes
- Apply Z-score normalization to standardize feature scales
- Fit LASSO-Cox or LASSO-logistic regression with 10-fold cross-validation
- The resulting model typically retains 5-20 features from thousands
- These selected features form a parsimonious, clinically deployable signature validated on independent external cohorts.
LASSO vs. Other Regularization Methods
Comparison of LASSO against Ridge and Elastic Net regression for radiomic feature selection and model regularization
| Feature | LASSO (L1) | Ridge (L2) | Elastic Net |
|---|---|---|---|
Penalty term | λ Σ|βⱼ| | λ Σβⱼ² | λ₁ Σ|βⱼ| + λ₂ Σβⱼ² |
Performs feature selection | |||
Handles correlated features | |||
Produces sparse solutions | |||
Coefficient shrinkage | Soft thresholding | Proportional shrinkage | Combined thresholding |
Solution uniqueness | Not guaranteed with p > n | Always unique | Always unique |
Bias-variance tradeoff | Higher bias, lower variance | Lower bias, higher variance | Balanced bias-variance |
Typical radiomics use case | Selecting predictive features from 1000+ radiomic features | Stabilizing models with multicollinear shape features | Handling grouped textural features with high correlation |
Frequently Asked Questions
Clear, technical answers to the most common questions about applying the Least Absolute Shrinkage and Selection Operator for high-dimensional radiomic feature selection and predictive modeling.
The Least Absolute Shrinkage and Selection Operator (LASSO) is a regularized linear regression technique that performs both variable selection and shrinkage to prevent overfitting in high-dimensional datasets. It works by adding an L1 penalty term—the sum of the absolute values of the regression coefficients multiplied by a tuning parameter lambda (λ)—to the ordinary least squares loss function. As λ increases, the penalty forces some coefficients to shrink exactly to zero, effectively removing those features from the model. This property makes LASSO particularly valuable in radiomics, where thousands of quantitative imaging features are extracted from a limited number of patient scans. Unlike ridge regression, which only shrinks coefficients toward zero without eliminating them, LASSO produces a sparse model containing only the most predictive features, yielding a parsimonious and interpretable radiomic signature.
Enabling Efficiency, Speed & Accuracy
Intelligent Analysis, Decision & Execution
We build AI systems for teams that need search across company data, workflow automation across tools, or AI features inside products and internal software.
Talk to Us
Search across company data
Give teams answers from docs, tickets, runbooks, and product data with sources and permissions.
Useful when people spend too long searching or get different answers from different systems.

Automate internal workflows
Use AI to route work, draft outputs, trigger actions, and keep approvals and logs in place.
Useful when repetitive work moves across multiple tools and teams.

Add AI to products and internal tools
Build assistants, guided actions, or decision support into the software your team or customers already use.
Useful when AI needs to be part of the product, not a separate tool.
Related Terms
LASSO regression is central to building robust radiomic signatures. These related concepts define the statistical ecosystem required to select predictive features and validate their clinical utility.
Radiomic Signature
A composite biomarker consisting of a selected panel of multiple quantitative imaging features combined via a mathematical model—often a LASSO or Cox regression—to predict a specific clinical endpoint. The signature distills high-dimensional radiomic data into a single actionable score for prognosis or treatment response prediction.
Overfitting
A modeling error where a statistical model describes random noise in the training data rather than the underlying biological relationship. In radiomics, where feature counts often exceed patient numbers (the curse of dimensionality), overfitting leads to optimistic internal performance but poor generalization on external validation cohorts. LASSO's L1 penalty directly mitigates this by shrinking irrelevant coefficients to zero.
Z-Score Normalization
A feature scaling technique that standardizes radiomic feature values by centering them to a mean of zero and scaling to a standard deviation of one. Critical preprocessing for LASSO because the L1 penalty is sensitive to the scale of input variables. Without normalization, features with larger numeric ranges would be unfairly penalized.
Intraclass Correlation Coefficient (ICC)
A statistical metric used to assess the test-retest reproducibility and inter-observer reliability of radiomic feature measurements. Features with low ICC are typically excluded before LASSO modeling because they represent measurement noise rather than true biological signal, ensuring the final signature is robust to segmentation variability.

About the author
Prasad Kumkar
CEO & MD, Inference Systems
Prasad Kumkar is the CEO & MD of Inference Systems and writes about AI systems architecture, LLM infrastructure, model serving, evaluation, and production deployment. Over 5+ years, he has worked across computer vision models, L5 autonomous vehicle systems, and LLM research, with a focus on taking complex AI ideas into real-world engineering systems.
His work and writing cover AI systems, large language models, AI agents, multimodal systems, autonomous systems, inference optimization, RAG, evaluation, and production AI engineering.
Partnered with leading AI, data, and software stack.
How We Work
Custom AI workflows for your Business
One-fit-all AI don't work for modern businesses. At Inferensys, we aim to understand your business & custom requirements; which we use to define most efficient agentic workflows, the data, and the tools for your business.
01
Review the use case
We understand the task, the users, and where AI can actually help.
Read more02
Pick the right approach
We define what needs search, automation, or product integration.
Read more03
Build the first useful version
We implement the part that proves the value first.
Read more04
Improve from there
We add the checks and visibility needed to keep it useful.
Read moreThe first call is a practical review of your use case and the right next step.
Talk to Us