Browse documentation

Inside the Neuralift Segmentation Engine

The method behind Neuralift's segmentation model: the five patented modules, retraining, explainability, and what is monitored on every run.

The Neuralift Segmentation Engine, the patented model at the core of the platform, groups a client’s records into distinct, meaningful segments from that client’s own first-party data, and produces feature attributions that explain what defines each segment. It is tailored to each client by learning from that client’s data, and it was designed as a robust, scalable, and interpretable alternative to traditional segmentation. The core method is described in granted patent US 12,321,960 B2, “Method and System for Improved Segmentation of Large Datasets Using AI.”

This page explains the method at the level of that patent. How the techniques are composed, tuned, and chained per client is the protected part. Deeper technical walkthroughs are available under NDA through Neuralift.

The five modules

The model comprises modules labeled to match the patent. The first four make up the Segmentation Engine itself; the fifth sits downstream of it.

ModuleRole
Dataloader (104)Secure ingestion and schema validation
Preprocessor (106)Representation learning and dimensionality reduction
Segmentation (108)Ensemble clustering and membership prediction
Explainability (110)Cross-checked, feature-level explanations
Generative (112)Plain-English narratives, outside the Segmentation Engine

Dataloader (104)

Securely ingests the client’s prepared first-party table and validates it against the expected schema (data types, ranges, and required fields) before any processing begins. Only the fields needed for modeling are loaded, and records that fail validation are flagged rather than silently dropped.

Preprocessor (106)

Turns the raw table into a clean, model-ready representation. A neural representation-learning step, a denoising autoencoder, learns a compressed representation and reconstructs clean signal from noisy or sparse inputs, improving robustness and generalization. A structure-preserving dimensionality reduction then projects the data into a lower-dimensional space that keeps both its global and local structure, so the segmentation that follows is stable and scales to large datasets with minimal information loss.

Segmentation (108)

Groups records into distinct segments using an ensemble that combines density-based clustering with predictive models. The density-based approach finds natural groupings and separates noise from signal without assuming a fixed number or shape of segments, and the predictive component assigns membership so new records can be placed into segments. Ensembling reduces sensitivity to any single method’s assumptions and yields more stable, reproducible segments, which are checked for stability and kept to a sensible number.

Explainability (110)

Explains each segment using several complementary methods rather than relying on one: feature-attribution methods that quantify each feature’s contribution, perturbation-based importance that measures how the result changes when a feature is varied, and local and global interpretability methods that explain both individual assignments and the segment as a whole. Using more than one method lets the explanations be cross-checked. The segmenter’s output is the set of segments and these explanations.

Generative (112), outside the Segmentation Engine

A separate downstream module uses a large language model to turn the Explainability output into clear, plain-English narratives for non-technical stakeholders. It receives only aggregated, segment-level signals (no raw records and no PII), and the narratives are grounded in the explainability output and reviewed by people. You see this output in the app as each segment’s insights and narratives.

Periodic retraining

Each client model is trained on that client’s data and refit as additional data arrives: the segmentation model is refined and the set of segments is updated, so results track how your customer base actually changes rather than freezing at a point in time.

Explainability and human oversight

Interpretability is a first-class output, not an afterthought: every segment comes with a feature-level explanation of what defines it. People review and act on the output. The model supports human decisions; it does not make autonomous decisions about individuals.

What Neuralift monitors

Performance is monitored on every run and reviewed monthly under the Performance Evaluation of Neuralift’s ISO/IEC 42001-certified AI Management System. Monitoring covers categories such as:

AreaWhat is monitored
Segmentation qualityNoise rate, number of segments, largest-segment share, embedding trustworthiness
Predictive performanceMembership-prediction accuracy and feature completeness
Explanation quality (GenAI)LLM success rate, faithfulness, and contradiction checks
CostProcessing cost and throughput

Each area is monitored against documented objectives.

Intended use and limitations

  • Intended use: marketing audience segmentation and the insight that supports it.
  • Not intended: as the sole basis for, or an automated means of, decisions affecting an individual’s credit, eligibility, employment, or other legal or financial status. In a financial-services context, the model is used for marketing segmentation and insight only, never for automated credit, eligibility, or adverse-action decisions.
  • Human oversight is retained over how segments are interpreted and used.

Note. Detail beyond the patent (pipeline composition, hyperparameters, and prompt design) is proprietary. If your security or data-science team needs a deeper technical walkthrough, contact support@neuralift.ai to arrange one under NDA.

Keep reading