Medium-Diverse¶
Description¶
The data is collected from the AntMaze_Medium_Diverse_GR-v4 environment. At the beginning of each episode the goal and agent’s reset locations are selected from hand-picked cells in the map provided. The success rate of all the trajectories is more than 80%, failed trajectories occur because the Ant flips and can’t stand up again. As in v1 the reward is sparse, but the data is collected with continuing_task=False: the episode terminates as soon as the Ant reaches the goal, so the reward can be collected only once and the maximum return of an episode is 1. The Ant reaches the goals by following a set of waypoints using a goal-reaching policy trained using SAC.
Dataset Specs¶
Total Steps |
1000000 |
Total Episodes |
1815 |
Dataset Observation Space |
|
Dataset Action Space |
|
Algorithm |
QIteration+SAC |
Author |
Alex Davey |
alexdavey0@gmail.com |
|
Code Permalink |
https://github.com/rodrigodelazcano/d4rl-minari-dataset-generation |
Minari Version |
|
Download |
|
Environment Specs¶
The following table rows correspond to the Gymnasium environment specifications used to generate the dataset. To read more about what each parameter means you can have a look at the Gymnasium documentation https://gymnasium.farama.org/api/registry/#gymnasium.envs.registration.EnvSpec
This environment can be recovered from the Minari dataset as follows:
import minari
dataset = minari.load_dataset('D4RL/antmaze/medium-diverse-v2')
env = dataset.recover_environment()
ID |
AntMaze_Medium_Diverse_GR-v4 |
Observation Space |
|
Action Space |
|
entry_point |
|
max_episode_steps |
1000 |
reward_threshold |
None |
nondeterministic |
|
order_enforce |
|
disable_env_checker |
|
kwargs |
|
additional_wrappers |
|
vector_entry_point |
|
Evaluation Environment Specs¶
This environment can be recovered from the Minari dataset as follows:
import minari
dataset = minari.load_dataset('D4RL/antmaze/medium-diverse-v2')
eval_env = dataset.recover_environment(eval_env=True)
ID |
AntMaze_Medium_Diverse_GR-v4 |
Observation Space |
|
Action Space |
|
entry_point |
|
max_episode_steps |
1000 |
reward_threshold |
None |
nondeterministic |
|
order_enforce |
|
disable_env_checker |
|
kwargs |
|
additional_wrappers |
|
vector_entry_point |
|