Test repo for hands-on part of the first MLOps lecture.
from mlops_models import ConstantPredictionModel
model = ConstantPredictionModel(0)
model.predict("")
> 0
from mlops_models import ConstantPredictionModel
model = ConstantPredictionModel(1)
model.predict("")
> 1
TBD