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
There are a bunch of issues with agent instantiation signatures. BaseAgent wants a name, but lots of subclasses don't instantiate with one. Worse, classes like DroneTrojanAgent use positional arguments in the super().__init__ calls, accidentally passing np_random to BaseAgent as name
😬
The text was updated successfully, but these errors were encountered:
There are a bunch of issues with agent instantiation signatures.
BaseAgent
wants aname
, but lots of subclasses don't instantiate with one. Worse, classes likeDroneTrojanAgent
use positional arguments in thesuper().__init__
calls, accidentally passingnp_random
toBaseAgent
asname
😬
The text was updated successfully, but these errors were encountered: