Interface RiskMLInterface.MLPredictor
- Enclosing class:
RiskMLInterface
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
Functional interface for ML model prediction.
This is a functional interface (SAM - Single Abstract Method) to allow lambda expressions.
- Version:
- 1.0
- Author:
- NeqSim Development Team
-
Method Summary
Modifier and TypeMethodDescriptionMakes a prediction.default List<RiskMLInterface.MLPrediction> predictBatch(List<Map<String, Double>> featuresBatch) Makes batch predictions.
-
Method Details
-
predict
Makes a prediction.- Parameters:
features- input features- Returns:
- prediction result
-
predictBatch
-