Go back to the home page! By the way, never use `.predict` or else you be not paying attention to the threshold you are using! Use
(model.predict_proba(X)[:,1] > threshold).astype(int)
, for some value of threshold
instead! :)