Predict Probabilities¶
Uses a model to predict Y given X and returns the estimatedprobabilities for each class in Y
Documentation¶
Applies a model to data. Uses the models implementation of the .predict_proba method to predict Y given X. But instead of returning the value for Y, the estimated probabilites for each class is returned.
Definition¶
Input ports¶
- in-model
Type: modelDescription: Input model- X
Type: tableDescription: X
Output ports¶
- Y
Type: tableDescription: Y
Configuration¶
- Output names (names method)
Method used to generate output names
Examples¶
The node can be found in:
Implementation¶
- class node_application.PredictProbabilities[source]