Expand description
Next activity prediction kernels.
This module provides process activity prediction:
- Markov chain-based prediction
- N-gram model prediction
- Batch inference for multiple traces
Structs§
- Activity
Prediction - A predicted next activity.
- Next
Activity Prediction - Next activity prediction kernel.
- Prediction
Config - Configuration for prediction.
- Prediction
Input - Input for batch prediction.
- Prediction
Model - A trained prediction model.
- Prediction
Output - Output from batch prediction.
- Trace
History - A trace history for prediction.
- Trace
Prediction - Predictions for a single trace.
Enums§
- Prediction
Model Type - Prediction model type.
Type Aliases§
- Higher
Order Transitions - Higher-order transition matrix. Key: sequence of activities (as tuple), Value: map of next activity -> count
- Transition
Matrix - Transition matrix for first-order Markov model. Key: current activity, Value: map of next activity -> count