Ryan Julian
Ryan Julian
Logger.TabularInput is needlessly cumbersome for the most common logging use case, and forces LogOutputs to replicate parts of the logger's dispatch and accounting logic internally. It would be simpler and...
Provide a decorator for quickly adding a LogOutput by decorating a callable, e.g. ```python @logger.output(str, int) def my_fun_handler(data, prefix=None): print('{} | datum: {}'.format(prefix, datum)) ```
Migrated from https://github.com/rlworkgroup/garage/issues/261 http://sdk.rethinkrobotics.com/intera/Arm_Control_Systems#Interaction_Control_Mode
Migrated from https://github.com/rlworkgroup/garage/issues/25
Migrated from https://github.com/rlworkgroup/garage/issues/36
Migrated from https://github.com/rlworkgroup/garage/issues/39
We can make the docker setup for contrib.ros simpler to understand and maintain by splitting the docker into (at least) 2 different containers 1. garage.contrib.ros container containing *only* the ROS...