Jagdeep
commited on
Update README.md
Browse files
README.md
CHANGED
@@ -42,18 +42,19 @@ size_categories:
|
|
42 |
|
43 |
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).
|
44 |
|
45 |
-
|
46 |
-

|
47 |
|
48 |
In this dataset, we open-source 2.5k+ annotated robot structures and policies from the EvoGym paper. The fields of each robot in the dataset are as follows:
|
49 |
-
- uid (str): Unique identifier for the robot [1]
|
50 |
-
- body (int64 np.ndarray): 2D array indicating the voxels that make up the robot
|
51 |
-
- connections (int64 np.ndarray): 2D array indicating how the robot's voxels are connected to each other
|
52 |
-
- reward (float): reward achieved by the robot's policy [2]
|
53 |
-
- env_name (str): name of the EvoGym environment (task) the robot was trained on
|
54 |
-
- generated_by (Literal["Genetic Algorithm", "Bayesian Optimization", "CPPN-NEAT"]): name of the algorithm that generated the robot
|
55 |
-
- policy_blob (binary): encodes the robot's policy
|
56 |
|
57 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
58 |
|
59 |
-
|
|
|
|
|
|
|
|
42 |
|
43 |
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).
|
44 |
|
45 |
+
<img src="https://github.com/EvolutionGym/evogym/raw/main/images/teaser-low-res.gif" alt="teaser" style="width: 50%; display: block; margin: auto;" />
|
|
|
46 |
|
47 |
In this dataset, we open-source 2.5k+ annotated robot structures and policies from the EvoGym paper. The fields of each robot in the dataset are as follows:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
48 |
|
49 |
+
- `uid` *(str)*: Unique identifier for the robot [[1]](#note1)
|
50 |
+
- `body` *(int64 np.ndarray)*: 2D array indicating the voxels that make up the robot
|
51 |
+
- `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.
|
52 |
+
- `reward` *(float)*: reward achieved by the robot's policy [[2]](#note2)
|
53 |
+
- `env_name` *(str)*: Name of the EvoGym environment (task) the robot was trained on
|
54 |
+
- `generated_by` *("Genetic Algorithm" | "Bayesian Optimization" | "CPPN-NEAT")*: Algorithm used to generate the robot
|
55 |
+
- `policy_blob` *(binary)*: Serialized policy for the robot
|
56 |
|
57 |
+
---
|
58 |
+
|
59 |
+
<span id="note1">[1]</span> This dataset is a subset of [EvoGym/robots](https://huggingface.co/datasets/EvoGym/robots)
|
60 |
+
<span id="note2">[2]</span> Rewards may not exactly match those in [EvoGym/robots](https://huggingface.co/datasets/EvoGym/robots), due to changes in the library, system architecture, etc.
|