HpBandSter icon indicating copy to clipboard operation
HpBandSter copied to clipboard

During the execution of the BOHB program, the following error occurred(DEBUG:hpbandster:DISPATCHER: Starting worker discovery), causing the program to hang

Open fengzhao860814 opened this issue 6 years ago • 2 comments

During the execution of the BOHB program, the following error occurred, causing the program to hang,I want to know why: "DEBUG:hpbandster:DISPATCHER: Starting worker discovery\n", "DEBUG:hpbandster:DISPATCHER: Found 1 potential workers, 1 currently in the pool.\n", "DEBUG:hpbandster:DISPATCHER: Finished worker discovery\n" "DEBUG:hpbandster:DISPATCHER: Starting worker discovery\n", "DEBUG:hpbandster:DISPATCHER: Found 1 potential workers, 1 currently in the pool.\n", "DEBUG:hpbandster:DISPATCHER: Finished worker discovery\n" "DEBUG:hpbandster:DISPATCHER: Starting worker discovery\n", "DEBUG:hpbandster:DISPATCHER: Found 1 potential workers, 1 currently in the pool.\n", "DEBUG:hpbandster:DISPATCHER: Finished worker discovery\n"

fengzhao860814 avatar Sep 11 '19 11:09 fengzhao860814

Hi, just had the same problem. It turns out that in the worker.compute() function I tried to return a pandas.DataFrame / numpy.ndarray in the 'info' field. This is not allowed. https://automl.github.io/HpBandSter/build/html/core/worker.html I found out by setting the loglevel to DEBUG, then one worker was showing an exception. import logging logging.basicConfig(level=logging.DEBUG) Cheers

BenWilhelmBW avatar Jan 03 '20 16:01 BenWilhelmBW

I tried to use logging.basicConfig(level=logging.DEBUG) Nothing came up and still hang at the same place. What should I do next?

trevor-yap avatar Sep 24 '23 09:09 trevor-yap