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
the following is the exception:
Process SpawnPoolWorker-6:
Traceback (most recent call last):
File "F:\ProgramData\Anaconda3\lib\site-packages\multiprocess\process.py", line 315, in _bootstrap
self.run()
File "F:\ProgramData\Anaconda3\lib\site-packages\multiprocess\process.py", line 108, in run
self._target(*self._args, **self._kwargs)
File "F:\ProgramData\Anaconda3\lib\site-packages\multiprocess\pool.py", line 114, in worker
task = get()
File "F:\ProgramData\Anaconda3\lib\site-packages\multiprocess\queues.py", line 361, in get
return _ForkingPickler.loads(res)
File "F:\ProgramData\Anaconda3\lib\site-packages\dill_dill.py", line 327, in loads
return load(file, ignore, **kwds)
File "F:\ProgramData\Anaconda3\lib\site-packages\dill_dill.py", line 313, in load
return Unpickler(file, ignore=ignore, **kwds).load()
File "F:\ProgramData\Anaconda3\lib\site-packages\dill_dill.py", line 525, in load
obj = StockUnpickler.load(self)
File "F:\ProgramData\Anaconda3\lib\site-packages\dill_dill.py", line 515, in find_class
return StockUnpickler.find_class(self, module, name)
AttributeError: Can't get attribute 'Individual' on <module 'deap.creator' from 'F:\ProgramData\Anaconda3\lib\site-packages\deap\creator.py'>
the following is the exception:
Process SpawnPoolWorker-6:
Traceback (most recent call last):
File "F:\ProgramData\Anaconda3\lib\site-packages\multiprocess\process.py", line 315, in _bootstrap
self.run()
File "F:\ProgramData\Anaconda3\lib\site-packages\multiprocess\process.py", line 108, in run
self._target(*self._args, **self._kwargs)
File "F:\ProgramData\Anaconda3\lib\site-packages\multiprocess\pool.py", line 114, in worker
task = get()
File "F:\ProgramData\Anaconda3\lib\site-packages\multiprocess\queues.py", line 361, in get
return _ForkingPickler.loads(res)
File "F:\ProgramData\Anaconda3\lib\site-packages\dill_dill.py", line 327, in loads
return load(file, ignore, **kwds)
File "F:\ProgramData\Anaconda3\lib\site-packages\dill_dill.py", line 313, in load
return Unpickler(file, ignore=ignore, **kwds).load()
File "F:\ProgramData\Anaconda3\lib\site-packages\dill_dill.py", line 525, in load
obj = StockUnpickler.load(self)
File "F:\ProgramData\Anaconda3\lib\site-packages\dill_dill.py", line 515, in find_class
return StockUnpickler.find_class(self, module, name)
AttributeError: Can't get attribute 'Individual' on <module 'deap.creator' from 'F:\ProgramData\Anaconda3\lib\site-packages\deap\creator.py'>
if the following code:
creator.create("FitnessMin", base.Fitness, weights=(-1.0,))
creator.create("Individual", list, fitness=creator.FitnessMin)
is in 'if name== "main":'
the exception will raise on windows but not raise on mac.
on the stackoverflow, some gay has met the same problem :
https://stackoverflow.com/questions/61902235/unable-to-speed-up-python-deap-with-multiprocessing
on windows ,it can be solved by put the code 'creator.create' outside of 'if name== "main":'
my question is:
Thanks
The text was updated successfully, but these errors were encountered: