Industrial Mind & Code · Independent Applied Research Blog
Placing probabilistic intelligence inside deterministic industrial systems.
I’m Siddharth Srinivasan, and this is my independent applied research blog. I test LLMs and agents inside industrial engineering decisions — supply chains, maintenance, production planning, manufacturing workflows, and product-lifecycle systems. My background is in industrial engineering and I work in digital engineering software, so I write about the domains I know first-hand.
The early result is not that AI beats everything. Models often fail when they are put directly in control of an operational decision, and become useful when they are constrained inside the right architecture. So I separate a bare LLM (the model on its own) from an agent (a model paired with tools and a control loop), and ask where each one belongs.
The bias is practical: compare against deterministic baselines, measure operational outcomes, and find the places where a hybrid design beats direct agentic control.
I am not asking whether AI agents are impressive in isolation. I am asking where they belong inside real industrial systems.
The early answer: not everywhere, not directly, and not without deterministic constraints.
01
Prompting helped structure behaviour, but it did not make LLM agents outperform simple deterministic replenishment rules. In the intent-classification experiments, a neutral-prompt instruction moved order variance by less than a fifth of the within-cell spread.
02
Additional context can increase reactivity and instability if the agent is placed in the wrong control role. In the hybrid safety-stock experiment, added context increased order variance for two of three models.
03
Better labels, cleaner intent, or more model capability do not fix a poor control architecture. In the oracle-label study, perfect ground-truth labels produced worse order variance than the formula running alone.
04
More deliberate model reasoning does not automatically translate into better industrial system performance. In the baseline replenishment study, reasoning models generated over 1,000,000 reasoning tokens with no measurable improvement in ordering performance.
05
The strongest results appear when AI is bounded inside a hybrid architecture rather than given direct operational control. In the replenishment experiments, order variance fell below 1.0 only once the AI selected the smoothing parameter and the deterministic formula still placed the order.
Research Agenda
Track 1
Experiments testing whether LLM agents amplify or reduce instability in supply-chain replenishment systems.
Track 2
Experiments testing local and edge-deployable AI for maintenance, TPM workflows, sensor interpretation, and vernacular industrial data.
Track 3
Experiments and essays on where AI belongs in industrial control and software systems.
Published research across supply-chain agents, industrial maintenance, edge inference, and hybrid AI architectures. Each card states the question, the setup, and the measured result — the writeups carry the full detail.
Tests whether a language model can attribute a machine breakdown to the failed component better than deterministic baselines and a trained classifier.
Research question
Given the sensor and error evidence just before a known breakdown, can an LLM name which of four components failed, and does it beat the classical tools used for this today?
Design & configuration
Key findings
Why it matters
For tabular sensor diagnosis of this shape, a cheap classical model is the right tool. A language model becomes competitive only once given the site’s own history, and even then should be measured against the simple rule that history implies. Result scoped to this simulated, same-fleet task.
Tests whether AI performs better selecting a bounded smoothing parameter than directly controlling orders or safety stock.
Research question
Can a model improve supply-chain stability when it selects the exponential-smoothing parameter α while the deterministic formula calculates the order?
Design & configuration
Key findings
Why it matters
This supports a bounded role for AI inside industrial control loops: the model adapts one parameter while the deterministic method keeps execution discipline. It is the first positive result in my replenishment experiments.
Removes the LLM entirely and feeds the replenishment formula perfect labels, to locate the real performance ceiling.
Research question
If the Order-Up-To formula is handed perfect, ground-truth demand labels — no LLM at all — can it finally beat exponential smoothing?
Design & configuration
Key findings
Why it matters
Perfect intelligence in the wrong position is worse than no intelligence. This closed the intent-classification line (V1–V5) and motivated moving the AI to a different control lever in V6.
Confines the AI to a five-label classification while a fixed lookup table and formula do all the arithmetic.
Research question
Does confining the AI to a clean five-label classification task keep orders steadier than a standard forecasting formula?
Design & configuration
Key findings
Why it matters
A reliable interface is not a safe architecture. Structured output solved the format problem and left the control problem untouched.
Tests whether model size, reasoning, or information level still matters once the AI’s output passes through a fixed lookup table.
Research question
Does giving the AI a clean five-label intent classification, instead of a raw number, let it lower order variance?
Design & configuration
Key findings
Why it matters
Model capability and better information were discarded at the lookup table. You cannot prompt your way out of the bullwhip effect when the architecture caps what any answer can do.
A deterministic formula executes every order while the AI only sets the safety-stock multiplier on top of it.
Research question
If the formula executes the orders and the AI only adjusts the safety-stock buffer, does the hybrid beat the baseline?
Design & configuration
Key findings
Why it matters
Hybrid is not safe by default. Which variable the model controls matters more than the fact that a formula executes the orders.
My baseline study: can any LLM configuration beat simple replenishment rules?
Research question
Can any LLM configuration — frontier or local, lightweight or reasoning — beat simple heuristic ordering rules in a serial supply chain?
Design & configuration
Key findings
Why it matters
More capable models cannot simply be dropped into operational decision loops and expected to beat the established method. This result anchors everything I have run since.
Tests whether a model trained on Indian data reads Indian seasonal demand better than a frontier reference.
Research question
Does a model trained on Indian data read Indian seasonal demand better than a frontier reference — and can either beat the formula?
Design & configuration
Key findings
Why it matters
Model provenance did not change operational behaviour. Training-data locality is not a substitute for the right control architecture.
The exploratory first study: does context or reasoning capability reduce bullwhip amplification?
Research question
Does more domain context, or more reasoning capability, reduce how much an LLM amplifies demand swings?
Design & configuration
Key findings
Why it matters
My first evidence that context interacts with the decision role instead of simply improving it.
Evaluates whether 4B-class models served locally can do real industrial fault diagnosis.
Research question
Can a model small enough to run locally — on a box beside the machines, no cloud — do real fault diagnosis, and what decides whether its output is usable?
Design & configuration
Key findings
Why it matters
On the edge, the integration decides usability as much as the model: sampling settings, output format, and serving health. The evidence supports decision assistance with human oversight, not autonomous diagnosis.
Protocol
I evaluate AI agents as components inside operational systems, not as isolated chat interfaces.
Infrastructure