Regularization and probabilities
In this exercise, you will observe the effects of changing the regularization strength on the predicted probabilities.
A 2D binary classification dataset is already loaded into the environment as X
and y
.
Cet exercice fait partie du cours
Linear Classifiers in Python
Exercice interactif pratique
Essayez cet exercice en complétant cet exemple de code.
# Set the regularization strength
model = LogisticRegression(C=1)
# Fit and plot
model.fit(X,y)
plot_classifier(X,y,model,proba=True)
# Predict probabilities on training points
prob = model.predict_proba(X)
print("Maximum predicted probability", ____)