Foundation Models for Predictive Maintenance
Predictive-maintenance teams are being told to replace their bespoke LSTMs with pretrained time-series foundation models, usually on evidence that does not hold the evaluation fixed. I rebuilt the comparison end to end: identical windowing, identical normalisation, no target leakage, and an LSTM baseline tuned with the same compute budget the foundation models got for prompting. Zero-shot, the foundation model lands 18% lower RMSE on remaining-useful-life prediction; fine-tuned, the gap widens on the noisiest dataset and closes on the cleanest. The cost is real — two orders of magnitude more parameters and 25× the inference time — which is the trade the write-up is actually about.
Protocol
Most published gaps come from evaluation drift, not modelling. I fixed the window length, the health-index normalisation and the train/test split before running anything, then gave the LSTM the same search budget as the prompt tuning — 40 Optuna trials each. Every number below comes from the same loader.
Where it wins
The advantage is not uniform: it concentrates at long horizons, where the LSTM has to extrapolate a degradation trend it only saw once. Inside 30 cycles of failure the two are indistinguishable — which matters, because that is the window a maintenance team actually schedules on.
Results
I picked the datasets before deciding what question I was asking, so two of the three are too clean to separate the models — I'd choose noisier data with real maintenance logs next time. I'd also log inference cost from day one instead of measuring it at the end; the 25× latency gap is the most decision-relevant number in the whole benchmark and it nearly got left out.