Andrew Stanton
Andrew Stanton
It sounds like you might not have compiled the library. Inside of your virtualenv, run `python setup.py develop` or `python setup.py install`.
Hey, sorry I missed this. Number of Trees and the L1/L2 options are going to be the most important by far since they limit how much information the trees can...
Sorry for the long delay; I somehow completely missed this bug report. Are you still facing the problem?
Curious. I wonder if we're running into the max size of pickle for serialization. Does the problem appear if you increase the max leaf size to say 100? Can you...
It certainly possible it will; this is intended to test whether the tree is too large to serialize correctly. How many labels are you predicting?
--threads 5 is going to hurt if you're using the default set of trees, which is 50. You might ramp that down to 5 trees for debugging purposes for the...
There we have it. How much memory does the machine have? You'll want to try increasing the regularization coefficient to increase sparsity of the linear classifiers. You can also use...
Interesting. Do you have more details you can share that would let me repro it?