-
Notifications
You must be signed in to change notification settings - Fork 1.8k
MedianstopAssessor silently crashes dispatcher when reporting multiple metrics #2117
Comments
@arvoelke thanks for reporting this issue. It seems builit-in assessors have not supported |
Great, thanks. Also not sure if this is a different issue, but there appears to be some interaction with the tuner's
I can't find the root of the error in the logs. However, it is triggered at the exact same time that |
@arvoelke thanks for reporting this issue. This is a bug and fixed in #2121 . |
merged, close |
Short summary about the issue/question:
When reporting multiple metrics, e.g.,
the
MedianstopAssessor
errors which ends up silently crashing the dispatcher (which makes the WebUI unresponsive and stops the experiment from making any progress). Seedispatcher.log
:How to reproduce it:
Call
nni.report_intermediate_result({'default': loss, 'other_metric': some_other_value})
while using theMedianstopAssessor
.nni Environment:
Anything else we need to know:
The root of the issue is on this line:
nni/src/sdk/pynni/nni/medianstop_assessor/medianstop_assessor.py
Line 95 in 9987014
My work-around is to create a file called
assessor.py
that contains:and then change the assessor in the experimental config to:
The text was updated successfully, but these errors were encountered: