In Notebook (Set and Get Hyperparameters)

Can we include a note here.

For more information on the model hyperparameter C, see x.

Reference section

We created a model with the default C value that is equal to 1. If we
wanted to use a different C parameter we could have done so when we created
the LogisticRegression object with something like LogisticRegression(C=1e-3).

We can also change the parameter of a model after it has been created with
the set_params method, which is available for all scikit-learn estimators.
For example, we can set C=1e-3, fit and evaluate the model:

(Note: I deleted my first question, as I see that __C was explained later in notebook. )

I added the note in the notebook: add note regarding parameter · INRIA/scikit-learn-mooc@ee5ee34 · GitHub

1 Like