Skip to content

Commit

Permalink
Dextreme and ADR release
Browse files Browse the repository at this point in the history
  • Loading branch information
ViktorM authored and Ankur Handa committed Mar 28, 2023
1 parent 9387caa commit 7a4c165
Show file tree
Hide file tree
Showing 50 changed files with 34,897 additions and 74 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
videos
/isaacgymenvs/logs
*train_dir*
*wandb*
*ige_logs*
*.egg-info
/.vs
Expand Down
14 changes: 14 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -302,3 +302,17 @@ If you use the Factory simulation methods (e.g., SDF collisions, contact reducti
year = {2022}
}
```

If you use the DeXtreme: Transfer of Agile In-hand Manipulation from Simulation to Reality work or the code related to Automatic Domain Randomisation, please cite the following paper:

```
@inproceedings{
handa2023dextreme,
author = {Ankur Handa, Arthur Allshire, Viktor Makoviychuk, Aleksei Petrenko, Ritvik Singh, Jingzhou Liu, Denys Makoviichuk, Karl Van Wyk, Alexander Zhurkevich, Balakumar Sundaralingam, Yashraj Narang, Jean-Francois Lafleche, Dieter Fox, Gavriel State},
title = {DeXtreme: Transfer of Agile In-hand Manipulation from Simulation to Reality},
booktitle = {ICRA},
year = {2023}
}
```


60 changes: 60 additions & 0 deletions assets/asset_templates/cube_multicolor.mtl
Original file line number Diff line number Diff line change
@@ -0,0 +1,60 @@
newmtl red
Ns 10.0
Ka 1.0 1.0 1.0
Kd 1.0 0.0 0.0
Ks 0.125 0.125 0.125
Ke 0.0 0.0 0.0
Ni 1.0
d 1.0
illum 2

newmtl green
Ns 10.0
Ka 1.0 1.0 1.0
Kd 0.0 1.0 0.0
Ks 0.125 0.125 0.125
Ke 0.0 0.0 0.0
Ni 1.0
d 1.0
illum 2

newmtl blue
Ns 10.0
Ka 1.0 1.0 1.0
Kd 0.0 0.0 1.0
Ks 0.125 0.125 0.125
Ke 0.0 0.0 0.0
Ni 1.0
d 1.0
illum 2

newmtl yellow
Ns 10.0
Ka 1.0 1.0 1.0
Kd 1.0 1.0 0.0
Ks 0.125 0.125 0.125
Ke 0.0 0.0 0.0
Ni 1.0
d 1.0
illum 2

newmtl cyan
Ns 10.0
Ka 1.0 1.0 1.0
Kd 0.0 1.0 1.0
Ks 0.125 0.125 0.125
Ke 0.0 0.0 0.0
Ni 1.0
d 1.0
illum 2

newmtl white
Ns 10.0
Ka 1.0 1.0 1.0
Kd 1.0 1.0 1.0
Ks 0.125 0.125 0.125
Ke 0.0 0.0 0.0
Ni 1.0
d 1.0
illum 2

20 changes: 20 additions & 0 deletions assets/asset_templates/cube_multicolor_allegro.urdf.template
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
<?xml version="1.0"?>
<robot name="object">
<link name="object">
<visual>
<origin xyz="0 0 0"/>
<geometry>
<mesh filename="$base_mesh" scale="$x_scale $y_scale $z_scale"/>
</geometry>
</visual>
<collision>
<origin xyz="0 0 0"/>
<geometry>
<box size="$x_scale $y_scale $z_scale"/>
</geometry>
</collision>
<inertial>
<density value="$density"/>
</inertial>
</link>
</robot>
Loading

0 comments on commit 7a4c165

Please sign in to comment.