Datasets:
Jagdeep
commited on
Update README.md
Browse files
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 |
-
|
42 |
-

|
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)
|
46 |
-
- body (int64 np.ndarray)
|
47 |
-
- connections (int64 np.ndarray)
|
48 |
-
- reward (float)
|
49 |
-
- env_name (str)
|
50 |
-
- generated_by (
|
|
|
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
|