-
Notifications
You must be signed in to change notification settings - Fork 77
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
Threads close on AttributeError when run in ipython #17
Comments
What versions of Python and sklearn-genetic are you using? |
Latest sklearn-genetic and python 3.6
…On Fri., Dec. 11, 2020, 7:09 a.m. Manuel Calzolari, < ***@***.***> wrote:
What versions of Python and sklearn-genetic are you using?
—
You are receiving this because you authored the thread.
Reply to this email directly, view it on GitHub
<#17 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/ABO5A6Z3Y5NLES6SJW7ITQLSUIR2LANCNFSM4UTVHT6A>
.
|
I think it may be related to DEAP's issue #268, but I'm not able to reproduce your specific issue. I created the following Windows 10 based environment:
Cell 1:
Cell 2:
However, I don't get any crash when I run the second cell multiple times. |
I appreciate the thorough test! There must be something unique with my
setup. Since then I've also tested in the python console and can't get it
to work in a loop.
If updating helps ill let you know.
…On Sat., Dec. 12, 2020, 11:29 a.m. Manuel Calzolari, < ***@***.***> wrote:
I think it may be related to DEAP's issue #268, but I'm not able to
reproduce your specific issue.
I created the following Windows 10 based environment:
- Python 3.6.12
- IPython 7.16.1
- notebook 6.1.4
- deap 1.3.1
- sklearn-genetic 0.3.0
Cell 1:
import numpy as np
from sklearn import datasets
from sklearn.neighbors import KNeighborsClassifier
from genetic_selection import GeneticSelectionCV
iris = datasets.load_iris()
E = np.random.uniform(0, 0.1, size=(len(iris.data), 20))
X = np.hstack((iris.data, E))
y = iris.target
Cell 2:
estimator = KNeighborsClassifier(n_neighbors=16)
selector = GeneticSelectionCV(estimator,
cv=10,
verbose=1,
scoring="accuracy",
max_features=3,
n_population=1000,
crossover_proba=0.5,
mutation_proba=0.2,
n_generations=40,
crossover_independent_proba=0.5,
mutation_independent_proba=0.05,
tournament_size=3,
n_gen_no_change=10,
caching=True,
n_jobs=4)
selector = selector.fit(X, y)
However, I don't get any crash when I run the second cell multiple times.
—
You are receiving this because you authored the thread.
Reply to this email directly, view it on GitHub
<#17 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/ABO5A62XSXM7C25BXNXTBD3SUOZCDANCNFSM4UTVHT6A>
.
|
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
In jupyter notebook, I can run the following without issue:
However, as soon as I run it for a second time in the same ipython cell, all of the deap threads raise an exception. I've included the stack trace below.
Essentially, the above code can't run in a loop in ipython. Are there some threads which are not properly closed due to the interaction between GIL and ipython?
The text was updated successfully, but these errors were encountered: