2013/2/21 Ark <[email protected]>: > I have been wondering about what makes the size of an SGD classifier ~10G. > If > only purpose is that of the estimators to predict, is there a way to cut down > on > the attributes that are saved [I was looking to serialize only the necessary > parts if possible]. Is there a better approach to package such an object > [which > might create a too big of a package to be of much use]?
The size is dominated by the n_features * n_classes coef_ matrix, which you can't get rid of just like that. What does your problem look like? -- Lars Buitinck Scientific programmer, ILPS University of Amsterdam ------------------------------------------------------------------------------ Everyone hates slow websites. So do we. Make your web apps faster with AppDynamics Download AppDynamics Lite for free today: http://p.sf.net/sfu/appdyn_d2d_feb _______________________________________________ Scikit-learn-general mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/scikit-learn-general
