Machine Learning Design Patterns
An occasional series of design patterns for ML Engineers
1 min readSep 28, 2019
Note: This series has now become an O’Reilly book. You can read it in early release here on Safari or pre-order it on Amazon.
You can also see the code for all the patterns on GitHub.
Original blogposts
Here are links to the blogposts that were expanded into the book (the book has 30 patterns):
- Transform: Moving an ML model to production is much easier if you keep inputs, features, and transforms separate
- Checkpoints: Saving the intermediate weights of your model during training provides resilience, generalization, and tuneability
- Virtual epochs: Base machine learning model training and evaluation on total number of examples, not on epochs or steps
- Keyed predictions: Export your model so that it passes through client keys
- Repeatable sampling: use the hash of a well distributed column to split your data into training, validation, and testing