Jagdeep
commited on
Update README.md
Browse files
README.md
CHANGED
@@ -28,4 +28,32 @@ configs:
|
|
28 |
data_files:
|
29 |
- split: train
|
30 |
path: data/train-*
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
31 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
28 |
data_files:
|
29 |
- split: train
|
30 |
path: data/train-*
|
31 |
+
license: cc-by-nc-4.0
|
32 |
+
task_categories:
|
33 |
+
- robotics
|
34 |
+
tags:
|
35 |
+
- robotics
|
36 |
+
- soft-robotics
|
37 |
+
- voxel-robots
|
38 |
+
- reinforcement learning
|
39 |
+
size_categories:
|
40 |
+
- 1K<n<10K
|
41 |
---
|
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" width="800"/>)
|
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 |
+
[1] This dataset is a subset of [EvoGym/robots](https://huggingface.co/datasets/EvoGym/robots)
|
58 |
+
|
59 |
+
[2] Rewards may not exactly match [EvoGym/robots](https://huggingface.co/datasets/EvoGym/robots), due to changes in the library, system architecture, etc.
|