load_precalculated_predictions#
- load_precalculated_predictions(pred_format: str = 'predictions') array [source]#
Load and return a precalculated predictions for the dataset.
- Parameters
- pred_formatstr, default: ‘predictions’
Represent the format of the returned value. Can be ‘predictions’ or ‘probabilities’. ‘predictions’ will return the predicted class for each sample. ‘probabilities’ will return the predicted probabilities for each sample.
- Returns
- predictionsnp.ndarray
The prediction of the data elements in the dataset.