How can I make a custom environment with a continues action space but with a specific step. For example:
self.action_space = Box(low=np.array([0,0,0]), high=np.array([+1,+1,+1]), dtype=np.float32)
gives a continues action space with 3 actions. So how to include step size (e.g. 0.001) in this continues action space?
Best, Farzad