Conceptio › Archive › arXiv CS
arXiv CSopen access

From Data Lifting to Continuous Risk Estimation: A Process-Aware Pipeline for Predictive Monitoring of Clinical Pathways

2026 · arxiv_cs
arXiv CS · Papers · License: Open Access · 2026
Open Source ↗Direct PDF ↓
neural-networks
machine learning, deep learning, neural networks

arXiv:2605.03895v1 [cs.LG] 5 May 2026

From Data Lifting to Continuous Risk Estimation: A Process-Aware Pipeline for Predictive Monitoring of Clinical Pathways Pasquale Ardimento

Mario Luca Bernardi

University of Bari Bari, Italy [email protected]

University of Sannio Benevento, Italy [email protected]

Marta Cimitile

Samuele Latorre

University of Bari Unitelma Sapienza Bari, Italy Rome, Italy [email protected] [email protected]

Abstract—This paper presents a reproducible and processaware pipeline for predictive monitoring of clinical pathways. The approach integrates data lifting, temporal reconstruction, event log construction, prefix-based representations, and predictive modeling to support continuous reasoning on partially observed patient trajectories, overcoming the limitations of traditional retrospective process mining. The framework is evaluated on COVID-19 clinical pathways using ICU admission as the prediction target, considering 4,479 patient cases and 46,804 prefixes. Predictive models are trained and evaluated using a case-level split, with 896 patients in the test set. Logistic Regression achieves the best performance (AUC 0.906, F1-score 0.835). A detailed prefix-based analysis shows that predictive performance improves progressively as new clinical events become available, with AUC increasing from 0.642 at early stages to 0.942 at later stages of the pathway. The results highlight two key findings: predictive signals emerge progressively along clinical pathways, and processaware representations enable effective early risk estimation from evolving patient trajectories. Overall, the findings suggest that predictive monitoring in healthcare is best conceived as a continuous, dynamically aware process, in which risk estimates are progressively refined as the patient journey evolves. Index Terms—digital health, process mining, predictive monitoring, clinical pathways, event log construction, data lifting This is the accepted manuscript of the paper “From Data Lifting to Continuous Risk Estimation: A Process-Aware Pipeline for Predictive Monitoring of Clinical Pathways,” accepted for presentation at the 21st IEEE International Workshop on e-Health Systems & Web Technologies (ESAS 2026), held in conjunction with IEEE COMPSAC 2026. This version has not undergone copy-editing or typesetting. The final authenticated version will be available via its DOI.

I. I NTRODUCTION Digital health aims to improve healthcare delivery through the integration of information technologies, data-driven services, monitoring systems, and decision-support mechanisms. The COVID-19 pandemic further emphasized the need for reliable digital health infrastructures capable of supporting healthcare professionals in dynamic, data-intensive, and highrisk scenarios. Hospitals routinely collect large volumes of heterogeneous clinical data from electronic health records and monitoring systems. Despite this, transforming such data into reliable decision-support indicators remains challenging due to

incompleteness, temporal inconsistencies, and fragmentation. Addressing these issues requires systematic data transformation processes (data lifting) to enable downstream analysis and predictive modeling. Process mining provides methods for reconstructing and analyzing real-world clinical pathways from event data. However, many healthcare process mining studies remain primarily retrospective: they analyze completed patient trajectories to discover process models, identify bottlenecks, or study pathway variability. While this is valuable, digital health systems increasingly require capabilities for continuous and prospective monitoring, where patient states are updated as the pathway evolves and decisions must be supported under partial and evolving information. In this context, predictive monitoring represents a key extension of process mining, enabling the estimation of future outcomes from partially observed trajectories. However, existing approaches often focus on predictive models in isolation, while paying less attention to the integration of data transformation, process-aware representations, and reproducible experimental pipelines. This paper proposes a reproducible and process-aware pipeline for predictive monitoring of clinical pathways. Rather than introducing a new predictive model, the focus is on the design of an end-to-end pipeline that integrates data lifting, temporal reconstruction, event log construction, prefix-based representations, and predictive modeling within a unified and traceable framework. This design enables continuous risk estimation from partially observed patient trajectories and supports the analysis of how predictive signals emerge over time. The main contributions of this paper are: A reproducible pipeline for transforming heterogeneous clinical records into temporally consistent event logs and process-aware representations suitable for predictive monitoring. • A prefix-based monitoring framework that enables continuous prediction from partially observed clinical pathways. • An empirical evaluation showing how predictive performance evolves along clinical pathways, providing insights •

into the progressive emergence of predictive signals and the role of process-aware representations. II. R ELATED W ORK The proposed work intersects three main research areas: process mining in healthcare, event log construction and data quality, and predictive process monitoring. Process mining provides techniques for discovering, monitoring, and improving processes from event logs. Foundational work by van der Aalst established its role as a bridge between data science and process science [1]. In healthcare, it has been applied to patient flow analysis, clinical pathway discovery, bottleneck identification, and conformance checking. Rojas et al. [2] review its application in healthcare, while Muñoz-Gama et al. [3] discuss key challenges such as data complexity, privacy, and interpretability. However, most applications remain retrospective, limiting their use in scenarios requiring continuous monitoring of evolving patient trajectories. A critical prerequisite for process mining is the construction of reliable event logs from heterogeneous data sources. In healthcare, this is particularly challenging due to fragmentation, missing values, and inconsistent timestamps. This transformation step, referred to as data lifting, is recognized as a central challenge [4], [5]. In this work, temporal reconstruction is treated as a task-aware transformation step aimed at producing representations suitable for predictive monitoring. Predictive process monitoring estimates future states or outcomes of running process instances. Early work focused on time and performance prediction [6], while later approaches introduced machine learning and deep learning models for predicting activities and outcomes from trace prefixes [7], [8]. Prefix-based representations enable reasoning over partially observed traces, but most approaches emphasize predictive accuracy over reproducible data preparation and system integration. Explainability is important in healthcare, where predictions must be understandable to domain experts. Prior work has explored feature-based and process-aware explanation techniques [9], [10]. Here, explainability is treated as a complementary direction supported by structured process-aware representations. Overall, existing approaches remain largely retrospective, often decoupled from reproducible data pipelines, and rarely evaluate temporal reconstruction as part of the monitoring architecture. This paper addresses these limitations through an end-to-end, reproducible, process-aware pipeline integrating data lifting, prefix-based representations, and predictive monitoring. III. P ROPOSED P IPELINE The proposed framework extends traditional process mining pipelines by introducing a process-aware and prefix-based monitoring architecture. Unlike classical approaches focused on retrospective analysis of complete traces, the pipeline supports predictive monitoring on partially observed clinical pathways. The architecture transforms heterogeneous clinical

data into temporally consistent event logs, from which prefixbased representations are derived to enable predictive modeling. The workflow is organized into four stages: 1) data integration and temporal validation; 2) event log construction and enrichment; 3) prefix-based process representation and feature extraction; 4) predictive monitoring. Each stage is implemented as a modular component, ensuring reproducibility and traceability. The figure 1 provides a refined view of the pipeline, where the four main stages described in the text are decomposed into finer-grained components for clarity. A. Data Integration and Temporal Validation Clinical data are integrated from multiple heterogeneous sources, including patient records, emergency diagnoses, hospital diagnoses, vital signs, medications, and laboratory tests. These data are stored in separate relational tables and are merged into a unified event-based representation through a deterministic data-lifting procedure implemented in extract_log.py. All source tables are aligned at the patient level using a unique patient identifier, which serves as the case identifier. To reduce redundancy, high-frequency tables such as vital signs and laboratory tests are optionally compressed by grouping records with identical patient identifiers and timestamps, retaining the first occurrence. Data cleaning is applied to standardize missing and invalid values. In particular, zero values and empty strings are converted to missing values (NaN) to ensure consistency across heterogeneous sources. Temporal validation and reconstruction are explicitly implemented through rule-based transformations. Timestamps are constructed by combining separate date and time attributes and converting them into a unified datetime format. Domaininformed correction rules are then applied to resolve inconsistencies. For example, triage timestamps that precede admission times within a limited time window are shifted forward, and inconsistencies between related events are corrected through conditional reordering. To support timestamp reconstruction, an inference table is computed for each patient by aggregating candidate timestamps from multiple sources (e.g., admission, ICU discharge, vital signs, laboratory tests). This table defines temporal anchor points that are used to infer missing or partially specified timestamps while preserving ordering constraints. Events labeled as FIRST, NOT FIRST, or LAST are adjusted relative to these anchors to ensure consistent sequencing. This stage produces a temporally consistent, case-aligned representation of clinical events, preserving incomplete records while enforcing temporal coherence. B. Event Log Construction and Enrichment The validated data are transformed into an event log through a deterministic extraction procedure implemented in

Reproducible Process-Aware Pipeline for Predictive Monitoring of Clinical Pathways From heterogeneous clinical tables to prefix-level prediction and early-risk evaluation

Clinical Data Sources 1

2

Data Lifting &

Temporal Reconstruction

• Patient records • Emergency data • Diagnoses • Laboratory tests • Vital signs • Medications

• Patient-level alignment • Cleaning missing values • Timestamp parsing • Temporal correction rules • Inference table anchors

Event Log Construction 3 • Event collectors • Activity mapping • Attribute enrichment • Trace ordering • XES export case

time

Prefix Generation & Feature Engineering • Trace decomposition • Prefix identifiers • Temporal features • Activity/transition features • Clinical aggregations

Heterogeneous clinical tables

Standard event log

Prefix-level feature table for partially observed traces

Evaluation & Analysis 6

• Prefix-level prediction

• Overall metrics

• Case-level target

• Prefix-length analysis

• Case-level split

• Early prediction assessment

• Probability scores

• Lessons learned

• Risk estimation

activity T = <e₁,...,e�> → T₁,...,T�

Temporally consistent case-aligned events

Predictive Monitoring 5

ML models Logistic Regression, RF Updated risk estimates

AUC by prefix length Performance and predictive behavior

Traceability and Reproducibility Artifacts Artifacts: Event log | Prefix dataset | Feature table | Prediction outputs | Evaluation results

Fig. 1. Proposed pipeline for predictive monitoring of clinical pathways.

extract_log.py. Each patient is modeled as a case, and clinical activities are mapped to events using modular event collectors. Each event collector specifies: (i) the source table(s), (ii) the timestamp attribute, (iii) the activity name, and (iv) the associated attributes. Event extraction is implemented through reusable functions supporting single-table extraction, multi-table joins, and aggregation of repeated measurements. Each event is represented as a structured record containing: case identifier; activity name; • timestamp. • •

Additional attributes are attached depending on the event type. For example, monitoring events include vital sign measurements, while admission events include diagnostic and administrative information. Attribute names are standardized during extraction. Events are grouped by patient and sorted by timestamp to form traces. Trace-level attributes (e.g., demographics) are propagated to all events using dedicated extraction functions. The resulting event log is stored in tabular format and subsequently converted into the XES format using xes_from_csv.py and the pm4py library. During conversion, attributes are mapped to XES-compliant fields (e.g., concept:name, time:timestamp), and both event-level and trace-level information are preserved. C. Prefix-Based Process Representation and Feature Extraction To enable predictive monitoring, each trace is decomposed into a set of prefixes using build_prefix_dataset.py. Given a trace T = ⟨e1 , e2 , . . . , en ⟩, prefixes are defined as Tk = ⟨e1 , e2 , . . . , ek ⟩

for k = 1, . . . , n.

Prefix generation is implemented by iterating over each trace and incrementally constructing temporally ordered event sequences. Each prefix is assigned a unique identifier, its corresponding case identifier, and its prefix length. Feature extraction is performed in feature_engineering.py, where prefix-level feature vectors are computed by aggregating event-level information. The extracted features include: • Temporal features: elapsed time from the first event, time since admission, and inter-event intervals; • Activity features: counts and frequencies of activities, and last observed activity; • Transition features: patterns of consecutive activities capturing short-term dynamics; • Clinical features: aggregated statistics (e.g., latest, minimum, maximum, average) of time-varying signals; • Case attributes: static demographic and contextual information. The resulting dataset is a prefix-level tabular representation that enables the application of standard machine learning models while preserving process-aware and clinically relevant information. D. Predictive Monitoring The predictive component estimates the likelihood of a target outcome from partially observed process trajectories. Each complete trace is decomposed into prefixes, and each prefix is represented through the feature vectors described in the previous section. Prefix-level feature vectors are used as input to classification models implemented in train_predictive_models.py. The prediction target is defined at the case level and propagated to all corresponding prefixes, enabling supervised learning on partially observed trajectories. Predictions are computed as probability scores for the positive class. The framework supports standard evaluation metrics such as AUC, accuracy, precision, recall, and F1-score,

and enables analysis of predictive performance as a function of prefix length. IV. C ASE S TUDY: COVID-19 C LINICAL PATHWAYS The proposed framework is evaluated on COVID-19 clinical pathways derived from the COVID Data for Shared Learning (CDSL) dataset. The dataset includes heterogeneous clinical information such as emergency admissions, hospital stays, ICU transfers, laboratory tests, medications, and monitoring activities. The data integration and preprocessing pipeline produces a temporally consistent event log, which is subsequently transformed into a prefix-level dataset. The resulting dataset includes 4,479 patient cases and 46,804 prefixes. For predictive evaluation, the data are split at the case level into training and test sets, with 896 patient cases used for testing, enabling the evaluation of predictive monitoring under partially observed conditions. A. Prediction Task and Experimental Setup The predictive task consists in estimating the likelihood of ICU admission from partially observed patient trajectories. The prediction target is defined at the case level and propagated to all corresponding prefixes. Each patient trace is decomposed into prefixes, and each prefix is represented using the feature vectors generated by the pipeline. The experimental setup simulates an online monitoring scenario, in which predictions are updated incrementally as new events become available. To prevent information leakage, the dataset is split at the case level, ensuring that all prefixes derived from the same patient are assigned to either the training or the test set. Predictive models are trained on prefix-level feature vectors and evaluated on unseen patient cases. Model performance is evaluated using standard classification metrics, including Area Under the ROC Curve (AUC), accuracy, precision, recall, and F1-score. The overall predictive results are reported in Table I. The results show that Logistic Regression achieves the best overall performance, with an AUC of 0.906 and an F1-score of 0.835, outperforming the Random Forest model across most evaluation metrics. These results indicate that the prefix-based feature representation is sufficiently informative to support accurate prediction using relatively simple and interpretable models. In addition to overall performance, predictive quality is analyzed as a function of prefix length to assess early prediction capability. The results are reported in Table II. The prefix-level analysis highlights a progressive improvement in predictive performance as additional events become available. At early stages, performance is limited (AUC 0.642 at prefix length 1 and 0.658 at prefix length 5), reflecting the scarcity of available clinical information. As the pathway evolves, predictive performance increases steadily, reaching an AUC of 0.772 at prefix length 20 and exceeding 0.93 for longer prefixes.

These results confirm that the proposed prefix-based representation supports incremental risk estimation and enables the analysis of predictive behavior at different stages of the clinical pathway. B. Reproducibility and Experimental Artifacts The case study is designed to ensure full reproducibility of the experimental workflow. Each stage of the pipeline produces explicit intermediate artifacts that can be independently inspected and reused. In particular, the following artifacts are generated: • event log: a temporally ordered representation of clinical events for each patient; • prefix dataset: a collection of partially observed trajectories, including case identifiers and prefix lengths; • feature table: a tabular representation of prefix-level features used for predictive modeling; • prediction outputs: model predictions, including probability scores and ground-truth labels for each prefix; • evaluation results: aggregated performance metrics computed overall and by prefix length. All transformations are deterministic and implemented through explicit processing steps, ensuring that the entire workflow can be reproduced from the original clinical data. The explicit generation of intermediate artifacts allows tracing each prediction back to the corresponding prefix and underlying event sequence, providing full transparency of the data flow. This artifact-based design enables not only reproducibility of the final results, but also fine-grained inspection of intermediate representations, supporting validation, debugging, and extension of the proposed pipeline in other clinical scenarios. The implementation will be made publicly available upon acceptance. V. L ESSONS L EARNED The experimental results provide several non-trivial findings that have implications for the design of process-aware digital health monitoring systems. A first key observation is that predictive performance does not increase uniformly, but exhibits a delayed emergence of informative signals. Although early prefixes show limited discriminative power (AUC 0.642 at prefix length 1), substantial improvements are observed only after a sufficient accumulation of events, with performance exceeding AUC 0.77 around prefix length 20 and reaching 0.942 at prefix length 50. This suggests that clinically relevant predictive information is not concentrated at admission, but is progressively encoded in the sequence of events generated during the care process. As a consequence, predictive monitoring systems should be designed to continuously update risk estimates rather than relying on early-stage predictions alone. A second important finding concerns the role of process structure in predictive performance. The consistent improvement across prefix lengths indicates that sequences of activities and their temporal ordering provide additional predictive

TABLE I OVERALL PREDICTIVE PERFORMANCE FOR ICU ADMISSION PREDICTION .

Model

Cases

Prefixes

Pos. Rate

AUC

Accuracy

Precision

Recall

F1

logreg rf

896 896

46804 46804

0.126 0.126

0.906 0.901

0.964 0.952

0.985 0.980

0.725 0.631

0.835 0.768

TABLE II E ARLY PREDICTION PERFORMANCE AT SELECTED PREFIX LENGTHS USING L OGISTIC R EGRESSION .

Prefix length

Cases

AUC

Precision

Recall

F1

1 5 10 20 30 40 50

896 894 879 799 658 493 349

0.642 0.658 0.716 0.772 0.826 0.931 0.942

0.714 0.833 0.947 1.000 0.970 0.977 0.975

0.152 0.154 0.286 0.460 0.561 0.808 0.867

0.250 0.260 0.439 0.630 0.711 0.884 0.918

power beyond isolated observations. This implies that processaware representations are not merely an alternative encoding, but a necessary component for capturing the evolving clinical state. In particular, the results suggest that modeling transitions and temporal context is essential for achieving robust predictive performance in dynamic healthcare scenarios. The results also highlight a structural trade-off between prediction earliness and reliability. Early-stage predictions are inherently affected by high uncertainty due to limited available information, while later predictions benefit from richer contextual evidence. However, the observed performance trajectory indicates that useful predictive signals already emerge at intermediate prefix lengths, suggesting that actionable predictions can be obtained before the completion of the clinical pathway. This has direct implications for the design of decision support systems, which must balance timeliness and confidence. Another relevant finding concerns the impact of temporal reconstruction on predictive performance. The overall AUC of 0.906, achieved on a dataset with heterogeneous and partially inconsistent timestamps, indicates that accurate temporal alignment is a critical enabler for process-aware learning. This suggests that data preprocessing, and in particular temporal validation and reconstruction, should be considered an integral part of the predictive modeling pipeline rather than a preliminary step. Finally, the generation of 46,804 prefixes from 896 patient cases demonstrates that prefix-based representations enable a substantial expansion of the training dataset while preserving process semantics. This increases the number of training instances without introducing artificial data, supporting both model training and fine-grained evaluation. At the same time, it enables detailed analysis of predictive performance across different stages of the clinical pathway, which would not be possible using only complete traces.

VI. D ISCUSSION The results of this study highlight several implications for the design of predictive process monitoring systems in healthcare. A first implication concerns the role of data transformation in predictive performance. The results indicate that the quality of temporal reconstruction and event log construction has a direct impact on model effectiveness. This suggests that improvements in predictive performance cannot be achieved solely through more advanced learning algorithms, but require careful design of the data-lifting pipeline. In this context, data preprocessing is not a preliminary step, but a core component of the predictive architecture. A second implication relates to the use of process-aware representations. The observed performance improvements across prefix lengths confirm that modeling patient trajectories as evolving sequences provides additional predictive value compared to static representations. This supports the view that process mining concepts can be effectively extended to predictive settings, where the goal is not only to analyze completed processes, but to reason on running cases. From a system design perspective, the results highlight the importance of incremental prediction mechanisms. Since predictive performance depends on the accumulation of evidence over time, monitoring systems should be designed to continuously update risk estimates rather than relying on single-point predictions. This has direct implications for realworld deployment, where clinical decisions must be made under uncertainty and refined as new information becomes available. More broadly, the findings suggest a shift in focus from model-centric to pipeline-centric approaches. While much of the existing literature emphasizes algorithmic improvements, the results show that the integration of data processing, process-aware representations, and predictive modeling plays a decisive role in achieving reliable performance. This perspective is particularly relevant in healthcare, where data heterogeneity and quality issues are intrinsic to the problem domain. Overall, these results support a paradigm shift from static prediction models to continuous, process-aware monitoring systems, in which patient risk is not estimated once, but progressively updated as clinical pathways evolve. A. Limitations The proposed approach involves several design choices that introduce limitations but are motivated by the requirements of

reproducibility, interpretability, and integration with processaware representations. First, the predictive models rely on tabular prefix-level features derived from aggregated event information. While this representation enables the use of standard and interpretable machine learning models, it abstracts away fine-grained temporal dependencies that could be captured by sequence-based approaches such as recurrent or transformer-based models. This choice reflects a trade-off between modeling expressiveness and reproducibility, as tabular representations provide a clear and deterministic mapping from event logs to features, which is essential for traceability in clinical applications. Second, the aggregation of event-level information into prefix-level descriptors may lead to a partial loss of temporal granularity. In particular, complex temporal patterns and longrange dependencies are summarized through statistical features rather than explicitly modeled. However, this design allows the integration of heterogeneous clinical signals within a unified feature space and supports scalable training and evaluation across large prefix datasets. Third, although the results demonstrate strong predictive performance, the study does not include a detailed clinical interpretation of the learned patterns. The focus is on the development of a process-aware predictive monitoring pipeline rather than on domain-specific knowledge extraction. Further validation with clinical experts is required to assess the practical relevance and usability of the generated predictions in real-world healthcare settings. Finally, the evaluation is conducted on COVID-19 clinical pathways derived from a single dataset. While the dataset is large and heterogeneous, additional experiments across different clinical domains are necessary to assess the generalizability of the proposed approach and its applicability to other healthcare scenarios. VII. C ONCLUSION This paper presented a reproducible and process-aware pipeline for predictive monitoring of clinical pathways based on partially observed patient trajectories. By integrating data lifting, temporal reconstruction, event log construction, prefixbased representations, and predictive modeling, the proposed framework enables the transition from retrospective process analysis to continuous, data-driven monitoring. The experimental evaluation on COVID-19 clinical pathways shows that predictive performance improves as additional events become available, with the best-performing model achieving an AUC of 0.906 and an F1-score of 0.835. These results confirm that clinically relevant predictive signals emerge progressively along patient pathways and that processaware representations are effective for modeling the temporal evolution of clinical states. Beyond predictive performance, the results highlight a key insight: effective predictive monitoring in healthcare depends not only on the choice of learning algorithms, but also on the design of the data transformation pipeline. In particular, temporal alignment, consistent event representation, and

prefix-based modeling play a central role in enabling reliable predictions from heterogeneous clinical data. This shifts part of the modeling effort from purely algorithmic optimization to the construction of reproducible and process-aware data pipelines. Future work will focus on extending the proposed approach in three main directions: (i) deployment in streaming environments to support real-time monitoring and continuous model updating, (ii) evaluation across diverse clinical domains to assess robustness and generalizability, and (iii) integration of sequence-based models to capture complex temporal dependencies while preserving traceability and interpretability of the predictive process. ACKNOWLEDGMENT This work was supported by the National Recovery and Resilience Plan (NRRP), M4C2I1.1, funded by the European Union – NextGenerationEU – Project Title aRtificial intElligence for Process Analytics (REPA) – Grant Assignment Decree No. 2022CJWPNA by the Italian Ministry of University and Research (MUR). D ECLARATION ChatGPT was used exclusively to improve language, grammar and clarity. It was not used to generate scientific content, perform analysis, or influence the results or conclusions. R EFERENCES [1] W. M. P. van der Aalst, Process Mining: Data Science in Action. Springer, 2016. [2] E. Rojas, J. Munoz-Gama, M. Sepulveda, and D. Capurro, “Process mining in healthcare: A literature review,” Journal of Biomedical Informatics, vol. 61, pp. 224–236, 2016. [3] J. Munoz-Gama et al., “Process mining for healthcare: Characteristics and challenges,” Journal of Biomedical Informatics, 2022. [4] A. Augusto, R. Conforti, M. Dumas, M. La Rosa, and A. Polyvyanyy, “Automated discovery of process models from event logs: Review and benchmark,” IEEE Transactions on Knowledge and Data Engineering, vol. 31, no. 4, pp. 686–705, 2019. [5] S. J. van Zelst, F. Mannhardt, M. de Leoni, and A. Koschmider, “Event abstraction in process mining: Literature review and taxonomy,” Granular Computing, vol. 6, pp. 719–736, 2021. [6] W. M. P. van der Aalst, M. H. Schonenberg, and M. Song, “Time prediction based on process mining,” Information Systems, vol. 36, no. 2, pp. 450–475, 2011. [7] N. Tax, I. Verenich, M. La Rosa, and M. Dumas, “Predictive business process monitoring with LSTM neural networks,” in Proc. CAiSE, 2017, pp. 477–492. [8] J. Evermann, J.-R. Rehse, and P. Fettke, “Predicting process behaviour using deep learning,” Decision Support Systems, vol. 100, pp. 129–140, 2017. [9] R. Galanti, B. Coma-Puig, M. de Leoni, J. Carmona, and N. Navarin, “Explainable predictive process monitoring,” in Proc. International Conference on Process Mining, 2020, pp. 1–8. [10] W. Rizzi, C. Di Francescomarino, and F. M. Maggi, “Explainability in predictive process monitoring: When understanding helps improving,” in Proc. Business Process Management, 2020, pp. 141–158. [11] K. Singhal et al., “Large language models encode clinical knowledge,” Nature, vol. 620, pp. 172–180, 2023. [12] World Health Organization, Global Strategy on Digital Health 2020– 2025. WHO, 2021. [13] A. Ritoré, A. M. Oprescu, A. Estirado Bronchalo, and M. A. Armengol de la Hoz, “COVID Data for Shared Learning (CDSL): A comprehensive, multimodal COVID-19 dataset from HM Hospitales,” PhysioNet, 2024. [Online]. Available: https://doi.org/10.13026/1176-6c44

[14] P. Ardimento, M. L. Bernardi, M. Cimitile, and S. Latorre, “A reproducible pipeline for clinical event log construction from heterogeneous healthcare data,” in WorldCIST 2026. Lecture Notes in Networks and Systems series, to appear.

Record · ID 155286 · SHA-256 f77ed610175550b9
Retrieved via Conceptio — every document is proof-bundled with source, license, and retrieval metadata.