REVIEW 4 major objections 5 minor 19 references
Domain Adaptation of LLMs for Process Data
T0 review · 4 major / 5 minor · reviewed 2026-08-05 · deepseek-v4-flash
Pith's one-line read Directly fine-tuning small LLMs on raw event-log sequences, with process-specific embeddings and lightweight adapters, beats recurrent baselines and narrative-style LLM pipelines on next-activity and remaining-time prediction.
desk verdict Worth a serious look and a major revision: the direct PEFT-adaptation idea is genuinely new for PPM, but the headline 'outperforms RNNs' claim is not yet statistically supported by single-run, best-epoch reporting. read the letter →
The pith
A machine-rendered reading of the paper's core claim, the machinery that carries it, and where it could break.
The reading
What carries the argument
The central mechanism is the replacement of the LLM's language-based tokenizer and embedding layer with a task-specific input layer that embeds activity-label indices and normalized timestamp features into the model's latent dimension, followed by PEFT of the backbone (either freezing selected layers or inserting LoRA low-rank adapters) while training the new input and output layers from scratch. This lets the pretrained transformer operate on the process's native token alphabet, and it is what distinguishes the approach from prompt-based and narrative-style methods that rely on natural-language text.
What would settle it
Train the same model architecture from scratch (random initialization) with the same PEFT and data pipeline. If the pretrained and randomly initialized models achieve statistically indistinguishable next-activity accuracy and remaining-time MSE across the five event logs, the improvement attributed to domain adaptation of pretrained LLMs is an artifact of the architecture or the input/output layers rather than of transfer from language pretraining.
Extended reading notes
Core claim
The paper's central claim is that a pretrained LLM backbone, when its token embeddings are replaced by randomly initialised embeddings for activity labels and time features and then adapted with PEFT, can learn predictive process monitoring tasks from raw event-log sequences and outperform both dedicated RNN models and LLMs that receive logs as narrative text. The authors report that these adapted LLMs achieve higher next-activity accuracy and lower remaining-time error than the best LSTM baselines in most settings, and that the advantage is most pronounced in multi-task remaining-time prediction. They further claim that the adapted models converge in under five epochs, require no task-speci
Load-bearing premise
The load-bearing premise is that hidden representations learned on natural-language text transfer to structured event-log sequences even after the input embeddings are replaced with randomly initialized, process-specific ones; if that transfer fails, the reported gains over RNNs would not hold.
Editorial extensions
If this is right
- If the central claim holds, predictive process monitoring can move away from prompt engineering: practitioners would fine-tune on raw event logs and get better accuracy with less human effort.
- Multi-task monitoring (next activity plus remaining time in one model) becomes practical with LLM backbones, since the adapted models handle both tasks better than multi-task RNNs.
- The finding that LoRA adapters are needed for the regression task but layer freezing suffices for classification suggests a simple rule for choosing a PEFT method based on the prediction target.
- Small open-weights LLMs (0.1 to 1 billion parameters) suffice to outperform much larger narrative-style pipelines, reducing runtime and deployment cost.
- Because the approach works without natural language, it applies to event logs with arbitrary or multilingual label alphabets, sidestepping label-translation issues.
Reading between the lines
- A direct testable extension: fine-tune the same PEFT pipeline on a randomly initialized transformer of identical architecture; if the pretrained model still wins, the value comes from pretrained hidden representations rather than from architecture alone.
- The method's reliance on trace encoding with teacher forcing suggests it could be combined with prefix-based online prediction, where the model sees partial traces, but the paper does not evaluate that setup.
- Because the adapted models converge so quickly, a natural next step is to use them as general-purpose process encoders and probe their learned representations for other PM tasks such as anomaly detection or outcome prediction.
- The reported sensitivity of the narrative-style baseline to label language implies that prompt-based approaches may be brittle in multilingual logs; the proposed direct adaptation avoids translation entirely, which could be exploited for cross-lingual process mining.
Signed reviews
Editorial analysis
A structured set of objections, weighed in public.
Referee Report
Summary. The paper studies direct fine-tuning of small open-weights LLMs (GPT-2, Qwen2.5, Llama3.2) on raw event-log tokens for predictive process monitoring, bypassing natural-language reformulation. The methodology replaces standard text tokenization with process-specific embeddings, then applies PEFT variants (full freezing, partial freezing, LoRA) to the transformer backbone. Experiments on five BPI event logs compare next-activity (NA) accuracy and remaining-time (RT) MSE against LSTM baselines (single- and multi-task) and the narrative-style S-NAP method. The central claim is that PEFT-adapted LLMs outperform recurrent and narrative baselines, especially in multi-task RT prediction, while converging faster and requiring less hyperparameter tuning.
Significance. If the results hold, this is a useful systematic study of an overlooked direction: parameter-efficient adaptation of LLMs to structured process data rather than prompt engineering or narrative-style reformulation. The use of open-source models, a public code repository, and an effort to adapt S-NAP to avoid future-information leakage are concrete strengths. The multi-task RT improvements are practically relevant for PPM. However, the current empirical support is weakened by single-run comparisons, test-set-based model selection, and a mismatch between the stated single-task claims and the actual experimental design. The paper's central comparative claims need stronger statistical grounding before the conclusions can be accepted.
major comments (4)
- [§5.1, §5.2, Table 2] The evaluation reports only 'the best scores' from single runs, with no seeds, confidence intervals, or significance tests. Section 5.1 describes an unbiased train/test split but does not describe a validation set or a model-selection procedure. Since the grid spans freezing configurations and LoRA settings, the reported 'best' configuration may have been selected on the test set, which biases results in favor of the reported methods. Some key differences are small: on BPI20RfP, RT MSE is 0.6366 for PM-GPT2 versus 0.6446/0.6456 for the RNNs, a gap of about 1.2-1.4%, which is not interpretable without variance estimates. The central RQ1 claim that LLMs 'outperform' existing methods is therefore statistically unsupported. Please add multiple seeds with means and standard deviations, a fixed validation split (or nested cross-validation) for configuration selection, and paired significance t
- [§5.2, RQ1; §6] The paper's conclusion that LLMs outperform 'traditional PPM models and narrative-style approaches in both single- and multi-task NA and RT prediction' is not supported by Table 2. Section 5.1 states that, due to cost, LLMs are trained only in the multi-task setup, yet Table 2 also reports single-task ST-RNN results; thus the 'single-task' comparison is not like-for-like. Moreover, in single-task NA, ST-RNN beats every LLM on BPI12 (0.8358 vs 0.8162) and on BPI17 (0.8855 vs 0.8730). The more balanced wording in Section 5.2 — ST-RNN remains strong for NA, LLMs are stronger for RT — is accurate, whereas the abstract/conclusion overstate the case. The claims should be restricted to what the experiments actually compare: multi-task LLM adaptation versus single-/multi-task RNNs on these datasets.
- [§4, PEFT of LLMs; §1] The claim that pretrained LLM knowledge transfers to process data is not isolated experimentally. Replacing the token embedding layer with randomly initialized, process-specific embeddings removes the word-level pretrained representations; the remaining value of pretraining comes from positional and upper-layer representations, but this is an assumption rather than a tested result. No from-scratch transformer or randomly initialized same-size backbone is included as a control. Without such an ablation, the good results could be attributed to the transformer architecture and trainable I/O layers rather than to the pretrained backbone. Given the paper's stated goal of 'domain adaptation of LLMs' and its claim of an 'inherent capacity' to interpret sequences when detached from natural language, this control is needed. Please add a random-init backbone of the same architecture, or at least a
- [§5.1, Hyperparameter Search Space; §5.2, RQ1] The claim that LLMs require 'significantly less hyperparameter optimization' is confounded with tuning effort. The RNN baselines are searched over a large grid (1-6 layers; three learning rates; four embedding sizes; three hidden sizes; three batch sizes), while LLM LoRA uses r=256 and alpha=512 from a reference and 10 epochs. The 'effort' comparison is therefore not on equal terms: the RNN budget is much larger, and the LLM freezing configurations are also selected in the same grid. Please either match tuning budgets, report performance as a function of number of trials, or qualify the claim accordingly.
minor comments (5)
- [§5.1] The text says 'The cross-entropy loss and mean squared error (MSE) are employed as optimizers during training'; these are loss functions, not optimizers. Also, 'the runtime for training and validation are also reported' is inconsistent with the absence of a described validation set.
- [Table 2] The caption and the '# params (%trainable)' column are ambiguous for RNNs. Specify whether the RNN parameter counts are total parameters, and make clear what the '(RNNs: 100%)' annotation means.
- [Figure 2] The figure caption says 'loss distributions' but does not state what the box plots summarize (datasets? runs? epochs?) or how many data points each box represents. Since Table 2 reports single runs, clarify whether these are distributions over event logs or configurations.
- [§3, §5.2] The S-NAP baseline is adapted from its original version, and the authors correctly note that the original prompt includes future information. Still, the phrase 'narrative-style-based solutions' in the abstract is broader than what is actually evaluated, which is one adapted S-NAP configuration. Consider naming the baseline explicitly throughout.
- [§5.1] The sentence 'Due to the LLM cost, we only train them in the multi-task setup' is important and should appear earlier, because it directly affects how readers interpret the single-task comparisons in Table 2.
Circularity Check
No circularity: the paper is an empirical benchmark comparison with no derivation chain that reduces to its own inputs; self-citations are non-load-bearing method references.
full rationale
The paper makes no mathematical derivation or first-principles prediction; its central claim is an empirical comparison of fine-tuned LLMs against RNN and narrative-style baselines on held-out event log splits. There is no equation-level equivalence between an input assumption and a reported result, and no fitted parameter is renamed as a prediction. The self-citations present are to the unbiased split methodology [19] and to time-related feature engineering [11], both of which are auxiliary, externally described methods and are not load-bearing for the main claim. The use of 'only the best scores' from a hyperparameter search is a test-set selection concern, not a definitional circularity, and the paper does not claim to derive these scores from its inputs. Accordingly, no circular step can be exhibited, and the appropriate finding is no significant circularity.
Assumptions & free parameters
free parameters (4)
- LoRA rank r and alpha =
r=256, alpha=512
- Fine-tuning epochs =
10 for LLMs, 25 for RNNs
- Freezing layer selection =
Full freezing, (0), (0,1), (-1), (-1,-2)
- RNN hyperparameters =
layers 1-6, LR 5e-4/1e-4/5e-5, embedding 32/128/256/512, hidden 128/256/512, batch 32/64/256
assumptions (6)
- domain assumption Pretrained transformer weights transfer to a new input embedding space
- domain assumption Trace encoding with teacher forcing is a valid training format for NA and RT
- domain assumption The unbiased split from [19] prevents data leakage
- domain assumption The public BPI logs are representative of process mining practice
- domain assumption The narrative-style baseline S-NAP is faithfully reimplemented
- domain assumption Event and case attributes can be ignored
Cite this review
Pith. "Pith review of Domain Adaptation of LLMs for Process Data." pith.science (2026). https://pith.science/paper/GXO4RELX
@misc{pith2026250903161,
author = {Pith},
title = {Pith review of: Domain Adaptation of LLMs for Process Data},
year = {2026},
howpublished = {\url{https://pith.science/paper/GXO4RELX}},
note = {Machine review of arXiv:2509.03161}
}
read the original abstract
In recent years, Large Language Models (LLMs) have emerged as a prominent area of interest across various research domains, including Process Mining (PM). Current applications in PM have predominantly centered on prompt engineering strategies or the transformation of event logs into narrative-style datasets, thereby exploiting the semantic capabilities of LLMs to address diverse tasks. In contrast, this study investigates the direct adaptation of pretrained LLMs to process data without natural language reformulation, motivated by the fact that these models excel in generating sequences of tokens, similar to the objective in PM. More specifically, we focus on parameter-efficient fine-tuning techniques to mitigate the computational overhead typically associated with such models. Our experimental setup focuses on Predictive Process Monitoring (PPM), and considers both single- and multi-task predictions. The results demonstrate a potential improvement in predictive performance over state-of-the-art recurrent neural network (RNN) approaches and recent narrative-style-based solutions, particularly in the multi-task setting. Additionally, our fine-tuned models exhibit faster convergence and require significantly less hyperparameter optimization.
Figures
Reference graph
Works this paper leans on
-
[1]
Berti, A., Kourani, H., van der Aalst, W.M.P.: Pm-llm-benchmark: Evaluating large language models on process mining tasks. In: ICPM Workshops (2025)
work page 2025
-
[2]
Berti, A., Kourani, H., Häfke, H., Li, C., Schuster, D.: Evaluating large language models in process mining: Capabilities, benchmarks, and evaluation strategies. In: BPMDS and EMMSAD (2024)
work page 2024
-
[3]
Biderman, D., Ortiz, J.J.G., Portes, J.P., Paul, M., Greengard, P., Jennings, C., King, D., Havens, S., Chiley, V., Frankle, J., Blakeney, C., Cunningham, J.P.: Lora learns less and forgets less. CoRR (2024)
work page 2024
-
[4]
In: ICLR (2022)
Hu, E.J., Shen, Y., Wallis, P., Allen-Zhu, Z., Li, Y., Wang, S., Wang, L., Chen, W.: Lora: Low-rank adaptation of large language models. In: ICLR (2022)
2022
-
[5]
Ketykó, I., Mannhardt, F., Hassani, M., van Dongen, B.F.: What averages do not tell: predicting real life processes with sequential deep learning. In: SAC (2022)
work page 2022
-
[6]
Kubrak, K., Botchorishvili, L., Milani, F., Nolte, A., Dumas, M.: Explanatory capabilities of large language models in prescriptive process monitoring. In: BPM (2024)
work page 2024
-
[7]
Lashkevich, K., Milani, F., Avramenko, M., Dumas, M.: Llm-assisted optimization of waiting time in business processes: A prompting method. In: BPM (2024)
work page 2024
-
[8]
Lu, Y., Bartolo, M., Moore, A., Riedel, S., Stenetorp, P.: Fantastically ordered prompts and where to find them: Overcoming few-shot prompt order sensitivity. In: ACL (2022)
work page 2022
Show all 19 references
-
[9]
In: BPM Workshops (2023)
van Luijken, M., Ketykó, I., Mannhardt, F.: An experiment on transfer learning for suffix prediction on event logs. In: BPM Workshops (2023)
2023
-
[10]
Trends in Cognitive Sciences (2024)
Mahowald, K., Ivanova, A.A., Blank, I.A., Kanwisher, N., Tenenbaum, J.B., Fe- dorenko, E.: Dissociating language and thought in large language models. Trends in Cognitive Sciences (2024)
2024
-
[11]
In: CAiSE
Oyamada, R.S., Tavares, G.M., Junior, S.B., Ceravolo, P.: Enhancing predictive process monitoring with time-related feature engineering. In: CAiSE. LNCS (2024)
2024
-
[12]
In: ICPM (2024)
Pasquadibisceglie, V., Appice, A., Malerba, D.: LUPIN: A LLM approach for ac- tivity suffix prediction in business process event logs. In: ICPM (2024)
2024
-
[13]
In: ICLR (2024)
Petrov, A., Torr, P., Bibi, A.: When do prompting and prefix-tuning work? A theory of capabilities and limitations. In: ICLR (2024)
2024
-
[14]
IEEE TSC (2023)
Rama-Maneiro, E., Vidal, J.C., Lama, M.: Deep learning for predictive business process monitoring: Review and benchmark. IEEE TSC (2023)
2023
-
[15]
In: ICPM (2024)
Rebmann, A., Schmidt, F.D., Glavas, G., van der Aa, H.: Evaluating the ability of llms to solve semantics-aware process mining tasks. In: ICPM (2024)
2024
-
[16]
In: BPM (2024)
Roider, J., Zanca, D., Eskofier, B.M.: Efficient training of recurrent neural networks for remaining time prediction in predictive process monitoring. In: BPM (2024)
2024
-
[17]
In: ICLR (2024)
Sclar, M., Choi, Y., Tsvetkov, Y., Suhr, A.: Quantifying language models’ sensi- tivity to spurious features in prompt design or: How I learned to start worrying about prompt formatting. In: ICLR (2024)
2024
-
[18]
In: CAiSE (2017)
Tax, N., Verenich, I., Rosa, M.L., Dumas, M.: Predictive business process moni- toring with LSTM neural networks. In: CAiSE (2017)
2017
-
[19]
In: BPM (2021)
Weytjens, H., Weerdt, J.D.: Creating unbiased public benchmark datasets with data leakage prevention for predictive process monitoring. In: BPM (2021)
2021
Reviewed August 5, 2026 · model on record in the stance chip above.
Discussion (0). Continue with ORCID to comment.