Nick Rhinehart
Nick Rhinehart
The conditional forecasting component still needs to be implemented.
Adds decorators that enable the creation of pairs of mutually exclusive boolean arguments.
Is it possible to turn on autopilot for the player's agent? For example, give it a goal in world coordinates, and let GTA use a planner, if available?
The `recursive` parameter shouldn't modify the contents of the object. ``` >>> attrdict.AttrDict({'list': [{'value': 1}, {'value': 2}]}, recursive=False) AttrDict({'list': [{'value': 1}, {'value': 2}], 'recursive': False}) ``` Let's say I have...
For most operations, the documentation does not make clear what gradients are implemented. Including this information for the inputs (e.g. annotating the inputs that do not have gradients implemented) would...
The README is insufficient for informing the user how to extract the relevant calendar string. I added more information that works for the current google calendar settings interface, and an...
Hi, I've noticed that if my program receives a KeyboardInterrupt at some point when it's in a `with Lockfile(filename)` context, the lockfile can persist on disk. This seems to be...