-
Notifications
You must be signed in to change notification settings - Fork 1.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
TPOT one-line pipeline representation #101
Comments
That's simply because the most trees allowed in a TPOT RF is 500. So when On Wednesday, March 2, 2016, Juan Nunez-Iglesias notifications@github.com
Randal S. Olson, Ph.D. E-mail: rso@randalolson.com | Twitter: @randal_olson |
Ah sure, so those expressions ((41 * (38 * 5), (3 - 94)?) evaluate to parameters to the sklearn RandomForestClassifier? Which parameters? |
That's right. The first one is the # of trees, the second one is On Wed, Mar 2, 2016 at 6:18 PM, Juan Nunez-Iglesias <
Randal S. Olson, Ph.D. E-mail: rso@randalolson.com | Twitter: @randal_olson |
Ah, thanks for the source pointer, that clarifies things a lot! But LOL it's a little bit depressing that TPOT came back to me with "use a random forest with as many trees as you can afford and automatic feature selection". =D |
How long did you run it for? Throwing a random forest at it usually comes out on top early on, depending on the data. Random forests became an industry standard for a long time for a reason. :-) |
@rhiever in this case, I think it was like 30 generations (and the best hadn't changed for a big chunk of those). My hope using TPOT was that it would find something that could match RF's accuracy but have better test-time speed. This result was with a toy dataset though, I'll keep fiddling. =) |
Gotcha. I'm currently doing a comprehensive analysis of TPOT on about 180 data sets. It'll be interesting to see what comes out of that. |
Just a quick (I hope) question. When I interrupt TPOT training, I get the following line output:
But when I export the pipeline, I just get a simple RF with 500 estimators. Is this expected? What's the format of these one-line summaries?
The text was updated successfully, but these errors were encountered: