Topic · Machine Learning & AI
← All topicsML Engineering for Quants
29 articles · 3 checkpoints · 18 deeper reads · 8 reference notes
A standalone topic: it is on no roadmap, so read it on its own terms.
Every article, in reading order
plant a flag as you finish eachRead these first
A working quant ML stack is less about which model library is used and more about a handful of infrastructure guarantees, point-in-time feature computation, reproducible training snapshots, and consistent inference, without which even a correct model produces wrong answers.
A model that scores brilliantly in a research notebook still has to survive being called thousands of times a day inside a live trading system, under latency budgets, version-control discipline and failure modes that research code was never designed to handle.
Unit tests catch broken code; they do not catch a model that runs fine and learns the wrong thing. ML testing needs a second layer aimed at data and behaviour, not just syntax.
Then the rest