------------------
* We no longer override any of the defaults of our default optimizer (SGD). In
particular, the parameters nesterov, momentum and lr are now set to the
default values set by keras.
* All optimizers must now be passed in uninitialized. Optimizer parameters can
be set by passing `optimizer__{kwarg}` parameters to the learner. This
follows the scikit-learn and skorch standard.
* Regularizers must similarly be passed uninitialized, therefore the
`reg_strength` parameter is replaced by `kernel_regularizer__l`.
* Tuning functionality has been removed. Since our Learners are ScikitLearn
estimators, any standard tuning framework should work and no special support
is needed.
* The tunable class and notably its `set_tunable_parameters` function has been
removed. Use `set_params` from the scikit-learn estimator API instead.