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_startoption (withsolvernotliblinear), and manually setcoef_andintercept_prior to fitting.