Skip to content

Commit a1d3537

Browse files
authored
Minor fixes for IsaacSim v5 (#13)
1 parent 3284a60 commit a1d3537

3 files changed

Lines changed: 6 additions & 5 deletions

File tree

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -101,9 +101,9 @@ The key features of Matterix are:
101101
python scripts/zero_agent.py --task=<TASK_NAME>
102102
103103
# example of an environment with two robot arms and several beakers:
104-
python scripts/zero_agent.py --task Isaac-Test-Beakers-Franka-v1 --num_envs 1
104+
python scripts/zero_agent.py --task Matterix-Test-Beakers-Franka-v1 --num_envs 1
105105
# or
106-
./matterix.sh -p scripts/zero_agent.py --task Isaac-Test-Beakers-Franka-v1 --num_envs 1
106+
./matterix.sh -p scripts/zero_agent.py --task Matterix-Test-Beakers-Franka-v1 --num_envs 1
107107
108108
```
109109
- Random-action agent
@@ -113,9 +113,9 @@ The key features of Matterix are:
113113
python scripts/random_agent.py --task=<TASK_NAME>
114114
115115
# example of an environment with two robot arms and several beakers:
116-
python scripts/random_agent.py --task Isaac-Test-Beakers-Franka-v1 --num_envs 1
116+
python scripts/random_agent.py --task Matterix-Test-Beakers-Franka-v1 --num_envs 1
117117
# or
118-
./matterix.sh -p scripts/random_agent.py --task Isaac-Test-Beakers-Franka-v1 --num_envs 1
118+
./matterix.sh -p scripts/random_agent.py --task Matterix-Test-Beakers-Franka-v1 --num_envs 1
119119
120120
```
121121

source/matterix/matterix/envs/matterix_base_env_cfg.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -212,6 +212,7 @@ class MatterixBaseEnvCfg:
212212
env_spacing = 2.5
213213
dt: float = 1 / 60 # Hz
214214
num_envs = 1
215+
export_io_descriptors = False
215216

216217
# physX settings
217218
bounce_threshold_velocity = 0.01

source/matterix_tasks/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
INSTALL_REQUIRES = [
2020
# generic
2121
"numpy",
22-
"torch==2.5.1",
22+
"torch>=2.5.1",
2323
"torchvision>=0.14.1", # ensure compatibility with torch 1.13.1
2424
# 5.26.0 introduced a breaking change, so we restricted it for now.
2525
# See issue https://github.com/tensorflow/tensorboard/issues/6808 for details.

0 commit comments

Comments
 (0)