You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I noticed that results are not reproducible by using the library i.e. when using sklearn drop-down-replacement classes, they will each time produce slightly different results.
Also, just now I noticed, that if the number of cores used (acr. n_jobs) is >1, then the results are not reproducible for the first scenario as well. So, the results are reproducible if n_jobs==1 and stochastic if n_jobs==-1.
Hello,
I noticed that results are not reproducible by using the library i.e. when using sklearn drop-down-replacement classes, they will each time produce slightly different results.
For example, when using:
, it will calculate (or select) different features each time.
The issue above I temporarily fixed by using:
, so that the outputs produced by
AutoFeatClassifier
stay constant among runs.However, when I tried using the following:
, the above-mentioned seed setting trick didn't translate into desirable outcome - the selected features still change during runs...
Is there an easy fix to correct this? Somewhere in the source randomness must be introduced somewhere, damn.
The text was updated successfully, but these errors were encountered: