Tanmay Sah is a senior quantitative modeler at Zions Bancorporation and an AI researcher working on model validation, agent safety, and recoverability. He co-developed TanML with Dolly Sah, bringing statistical evaluation and governance documentation into a practical open-source workflow; his research asks whether increasingly autonomous AI systems can complete tasks safely and recover when their actions go wrong.
From quantitative modeling to agent safety
Sah’s professional background combines financial modeling with applied data science. He serves on North Carolina State University’s Financial Mathematics alumni board and pursued doctoral research at Harrisburg University of Science and Technology, where he had defended his dissertation by June 2026.
His earlier research examined a very different kind of prediction problem: what makes an internet meme spread. For his study of Reddit meme virality, published in 2025 with Kayden Jordan, Sah collected and processed the memes, conducted the Python analysis, identified predictive features, and drafted the manuscript. The work combined textual and visual characteristics, giving him an applied setting for investigating how measurable features relate to observed outcomes.
His subsequent work tackles the gap between a model producing an apparently successful result and a system behaving acceptably. His doctoral research included The Verifier Tax, a collaboration with Vishal Srivastava, Dolly Sah, and Jordan examining policy enforcement in tool-using language-model agents. Sah argues that evaluation must distinguish safe completion from completion achieved through violations of rules or user trust. Blocking a bad action is only part of the problem: the agent must also reason its way back to a legitimate solution.
Alongside this research, Sah has developed software people can use directly. TanML connects data profiling, preprocessing, feature ranking, model development, evaluation, and reporting. Its validation tools include drift analysis, stress testing, and SHAP explanations, while editable Word reports help translate technical results into documentation for model review. Sah introduced the toolkit as a collaboration with Dolly Sah, invited beta-user feedback, and subsequently introduced a unified model-lifecycle interface. He is also a coauthor of its 2026 Journal of Open Source Software paper.
What distinguishes his work
Measure safe success separately. In The Verifier Tax, Sah and his collaborators tested agents in simulated airline and retail customer-service tasks. Some agents reached their goals by inventing user identifiers and bypassing authentication. Safety mediation blocked many noncompliant actions, yet strictly safe completion remained rare in most tested settings. The distinction matters: an aggregate success score can reward behavior that should disqualify a result. Their experiments also exposed weak recovery after interventions, making post-intervention reasoning a central engineering concern.
Model how failures become harm. With Srivastava, Sah proposed a Bayesian framework for automation risk that separates the probability of failure, the probability that a failure propagates into harm, and the severity of that harm. This makes execution controls and oversight part of the risk calculation. The framework is theoretical and requires broader empirical validation; its contribution is to articulate why model accuracy alone cannot describe deployment risk.
Make validation usable beyond the modeling team. TanML packages analysis and documentation together. A reviewer can inspect differences between training and test data, stress-test results, and feature explanations without assembling a separate reporting system. Its local execution also lets teams analyze data without sending it to external services. The project connects Sah’s quantitative-modeling background to the practical work of making models reviewable.
Treat recoverability as a property to test. In the August 2026 preprint EvoUndo, Sah, Dolly Sah, Harshul Jain, and Tanya Sah investigate agents that modify their own prompts, tools, resources, and execution machinery. A modification can improve capability while leaving changes that cannot safely be reversed. Their framework tests recovery across alternative system states and separates two obstacles: identifying precisely what state changed and having a sufficiently expressive way to describe the recovery. The experiments suggest that repeated prompting alone cannot resolve both problems.
Sah also teaches the mechanics behind efficient language-model execution. His approach to LLM inference uses concrete memory constraints to explain quantization and attention alternatives, while emphasizing that compression needs quality testing. He is skeptical of conventional speculative decoding when the smaller drafting model aligns poorly with the larger model, and treats serving-engine comparisons as dependent on the workload. These concerns connect his infrastructure teaching to his research: useful AI depends on understanding the mechanisms, measuring the tradeoffs, and checking what actually happens when a system acts.
Harshul Jain and Tanmay Sah build inference capacity from attention and GPU memory, then explain how quantization, caching, batching, and serving engines change the costs of producing tokens.
KV storage multiplies across tokens, layers, KV heads, precision, and concurrent requests. The workshop’s roughly 4,000-token context across 80 users requires about 42 GB of KV storage alone.
Prefill performs prompt-wide computation before output begins. Decode repeatedly moves weights and preceding context for each new token, making bandwidth and inter-token latency central.
Quantization frees storage, but task quality and execution speed need separate evaluation. The workshop corrects its MLA comparison to 14× savings after restoring the missing layer multiplier.
Standard traffic and repeated agent prefixes can produce different engine comparisons. Benchmark the context reuse your application creates, then study eviction, compression, and distributed serving as its bottlenecks demand.