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
type(dim) == int; however, keys of head_submodules are guaranteed to be str due to the line head_submodules[str(dim)] = submod. This suggests that the above if-statement will never continue. Thoughts on this?
The text was updated successfully, but these errors were encountered:
In particular, see here:
adeptRL/adept/network/modular_network.py
Lines 216 to 238 in 2d8b0d3
In the following if-statement:
type(dim) == int
; however, keys ofhead_submodules
are guaranteed to bestr
due to the linehead_submodules[str(dim)] = submod
. This suggests that the above if-statement will never continue. Thoughts on this?The text was updated successfully, but these errors were encountered: