MLOps Deployment and Life Cycling
Nemanja Radojkovic
Senior Machine Learning Engineer
TEST TYPES
DEV, DEPLOY, TEST ENVIRONMENTS
OUT OF SCOPE: Predictive model performance
IN SCOPE: Testing the overall ML app
Checking if independent code units behave as expected
EXAMPLE
Function to test:
def add_two_numbers(x, y):
return x + y
Unit test:
add_two_numbers(1, 1) == 2
add_two_numbers(2, 3) == 5
We must be careful what we introduce in production.
The Challenger shuttle disaster in 1986 was caused by a failed rubber sealing ring
MLOps Deployment and Life Cycling