I am using scikit-learn's linear_model.LogisticRegression to perform multinomial logistic regress. I would like to initialize the solver's seed value, i.e. I want to give the solver its initial guess as the coefficients' values.
Does anyone know how to do that? I have looked online and sifted through the code too, but haven't found an answer. Thanks!
You can use the
warm_start
option (withsolver
notliblinear
), and manually setcoef_
andintercept_
prior to fitting.