Re: Extracting weights from linear regression model

2015-10-08 Thread Theodore Vasiloudis
Hello Trevor, I assume you using the MultipleLinearRegression class in a manner similar to our examples, i.e.: // Create multiple linear regression learnerval mlr = MultipleLinearRegression().setIterations(10).setStepsize(0.5).setConvergenceThreshold(0.001) // Obtain training and testing data set

Extracting weights from linear regression model

2015-10-07 Thread Trevor Grant
Sorry if this is a novice question, but I can't figure out how to extract the weights vector from a multiple linear regression model. I can fit/predict, but I can't get the weight vector. Any advice would be appreciated (even snide go read the docs comments, so long as they point me to applicable