Search papers, labs, and topics across Lattice.
This paper introduces EHHN, an Event-driven Heterogeneous Hypergraph Network designed for predicting the next activity in object-centric event logs, addressing the limitations of existing methods that fail to capture multi-object interactions and temporal dynamics. By representing prediction prefixes as heterogeneous hypergraphs and employing a dual-stream architecture, EHHN effectively models both object-state evolution and global execution patterns. Experimental results demonstrate that EHHN outperforms nine baseline models across four public OCEL benchmarks, achieving significant accuracy improvements while also reducing peak GPU memory usage substantially.
EHHN achieves up to 12.4 percentage points improvement in next activity prediction accuracy while slashing peak GPU memory usage by 24 times compared to traditional methods.
Next activity prediction helps service-oriented processes anticipate upcoming steps before delays, exceptions, or service-level risks occur. Most existing methods assume classical single-case event logs, whereas real service processes often involve events shared by multiple typed business objects. Object-centric event logs (OCELs) capture such interactions, but current predictors remain limited. Flattening-based approaches lose cross-object context, and native OCEL graph-based approaches encode multi-object events through pairwise relations. Existing models also do not jointly capture event-driven object state changes, inter-event timing, and global execution patterns. We propose EHHN, an Event-driven Heterogeneous Hypergraph Network for object-centric next activity prediction. EHHN represents each prediction prefix as a heterogeneous hypergraph, where event--object hyperedges bind retained co-participating objects and a lifecycle hyperedge groups the primary object's observed lifecycle events. Based on this representation, EHHN uses a dual-stream architecture in which a micro-spatial stream models event-driven object-state evolution and a macro-evolution stream captures temporal dynamics using retrieved global prototypes. The two streams are fused to predict the next activity. Experiments on four public OCEL benchmarks against nine baselines show that EHHN achieves the best accuracy and macro F1-score on all datasets, with improvements of up to 8.1 and 12.4 percentage points over the strongest baselines. Compared with the strongest OCEL-native graph baseline, EHHN also reduces peak GPU memory by up to 24 times. Code is available at https://github.com/chenkaitao1112/EHHN.