> ## Documentation Index
> Fetch the complete documentation index at: https://shapely.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# Model → Predict

>  Model Predict uses a trained (or loaded) machine learning model to make predictions on new, unseen data. It takes input features and returns the model output — class labels for classifiers, cluster assignments for clustering, or numerical values for regressors.

This is the final step in the ML pipeline where the model is applied to real data. 

<Note>
  The input features for prediction **must have the same structure** (same number and order of features) as the data used during training. Use the same preprocessing steps (Feature Extractor, Feature Scaler, Encoder) that were applied to the training data.
</Note>

<a href="/images/ML/Model Predict.png" target="_blank">
  <img src="https://mintcdn.com/shapely/GiFxyBIPYCb4gWwv/images/ML/Model%20Predict.png?fit=max&auto=format&n=GiFxyBIPYCb4gWwv&q=85&s=133f450d06449f49c4de66fd54a5f3cc" className="pointer-events-none" style={{ borderRadius: '0.5rem', border: '1px solid rgba(0,0,0,0.1)' }} width="1971" height="945" data-path="images/ML/Model Predict.png" />
</a>
