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
Traceback for <Task finished name='Task-3' coro=<AsyncRunner._run() done, defined at /Users/basnijholt/Work/adaptive/adaptive/runner.py:601> exception=TypeError("unhashable type: 'dict'")> (most recent call last):
TypeError: unhashable type: 'dict'
File "/Users/basnijholt/Work/adaptive/adaptive/runner.py", line 555, in status
return "failed"
File "/Users/basnijholt/Work/adaptive/adaptive/runner.py", line 555, in status
return "failed"
File "/Users/basnijholt/Work/adaptive/adaptive/runner.py", line 618, in _run
self._cleanup()
File "/Users/basnijholt/Work/adaptive/adaptive/runner.py", line 210, in _process_futures
self._do_raise(e, x)
The text was updated successfully, but these errors were encountered:
When a
SequenceLearner
that has unhashable entries in sequence (e.g.,List[dict]
) fails, theRunner
breaks.This happens because of the
dict[x]
inadaptive/adaptive/runner.py
Lines 204 to 210 in 0f85d3a
Reproduce with:
traceback
The text was updated successfully, but these errors were encountered: