Jagdeep commited on
Commit
5779839
·
verified ·
1 Parent(s): a23bba9

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +7 -8
README.md CHANGED
@@ -38,13 +38,12 @@ license: cc-by-nc-4.0
38
 
39
  Evolution Gym is a large-scale benchmark for co-optimizing the design and control of soft robots. It provides a lightweight soft-body simulator wrapped with a gym-like interface for developing learning algorithms. EvoGym also includes a suite of 32 locomotion and manipulation tasks, detailed on our [website](https://evolutiongym.github.io/all-tasks). Task suite evaluations are described in our [NeurIPS 2021 paper](https://arxiv.org/pdf/2201.09863).
40
 
41
- [//]: # (<img src="https://github.com/EvolutionGym/evogym/raw/main/images/teaser-low-res.gif" alt="teaser" width="800"/>)
42
- ![teaser](https://github.com/EvolutionGym/evogym/raw/main/images/teaser-low-res.gif)
43
 
44
  In this dataset, we open-source 90k+ annotated robot structures from the EvoGym paper. The fields of each robot in the dataset are as follows:
45
- - uid (str): Unique identifier for the robot
46
- - body (int64 np.ndarray): 2D array indicating the voxels that make up the robot
47
- - connections (int64 np.ndarray): 2D array indicating how the robot's voxels are connected to each other
48
- - reward (float): reward achieved by the robot during training
49
- - env_name (str): name of the EvoGym environment (task) the robot was trained on
50
- - generated_by (Literal["Genetic Algorithm", "Bayesian Optimization", "CPPN-NEAT"]): name of the algorithm that generated the robot
 
38
 
39
  Evolution Gym is a large-scale benchmark for co-optimizing the design and control of soft robots. It provides a lightweight soft-body simulator wrapped with a gym-like interface for developing learning algorithms. EvoGym also includes a suite of 32 locomotion and manipulation tasks, detailed on our [website](https://evolutiongym.github.io/all-tasks). Task suite evaluations are described in our [NeurIPS 2021 paper](https://arxiv.org/pdf/2201.09863).
40
 
41
+ <img src="https://github.com/EvolutionGym/evogym/raw/main/images/teaser-low-res.gif" alt="teaser" style="width: 50%; display: block; margin: auto;" />
 
42
 
43
  In this dataset, we open-source 90k+ annotated robot structures from the EvoGym paper. The fields of each robot in the dataset are as follows:
44
+ - `uid` *(str)*: Unique identifier for the robot
45
+ - `body` *(int64 np.ndarray)*: 2D array indicating the voxels that make up the robot
46
+ - `connections` *(int64 np.ndarray)*: 2D array indicating how the robot's voxels are connected. In this dataset, all robots are fully-connected, meaning that all adjacent voxels are connected.
47
+ - `reward` *(float)*: reward achieved by the robot's policy
48
+ - `env_name` *(str)*: Name of the EvoGym environment (task) the robot was trained on
49
+ - `generated_by` *("Genetic Algorithm" | "Bayesian Optimization" | "CPPN-NEAT")*: Algorithm used to generate the robot