Open
Description
Problem
We would like a tutorial showing, from start to finish, how an arbitrary OpenAI Gym environment can be used with our framework.
Solution
This requires:
- Creating generic
GymTask
andGymTaskSampler
classes which just wrap a given gym environment (or gym environment string identifier) for our use. - Writing the tutorial using the above.
Possible issues:
- I'm not entirely sure how we should handle
Sensor
s in this case. Since the Gym just returns observations itself we could just have aGymSensor
that wraps these?
Dependencies
None