You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Adds pre-trained checkpoints and tools for generating and uploading checkpoints (isaac-sim#151)
Created a standalone script that can train all our environments and
publish their checkpoints to a Nucleus server. The play.py scripts were
modified to add a --use_pretrained_checkpoint flag. This downloads and
caches the pre-trained checkpoint to a .pretrained_checkpoints
directory.
- [x] I have run the [`pre-commit` checks](https://pre-commit.com/) with
`./isaaclab.sh --format`
- [x] I have made corresponding changes to the documentation
- [x] My changes generate no new warnings
- [ ] I have added tests that prove my fix is effective or that my
feature works
- [x] I have updated the changelog and the corresponding version in the
extension's `config/extension.toml` file
- [x] I have added my name to the `CONTRIBUTORS.md` or my name already
exists there
---------
Signed-off-by: peterd-NV <[email protected]>
Signed-off-by: Kelly Guo <[email protected]>
Signed-off-by: Kelly Guo <[email protected]>
Co-authored-by: peterd-NV <[email protected]>
Co-authored-by: CY Chen <[email protected]>
Co-authored-by: oahmednv <[email protected]>
Co-authored-by: Toni-SM <[email protected]>
Co-authored-by: Kelly Guo <[email protected]>
Co-authored-by: Kelly Guo <[email protected]>
Copy file name to clipboardExpand all lines: source/extensions/omni.isaac.lab/docs/CHANGELOG.rst
+24-14Lines changed: 24 additions & 14 deletions
Original file line number
Diff line number
Diff line change
@@ -163,7 +163,7 @@ Added
163
163
* Added full buffer property to :class:`omni.isaac.lab.utils.buffers.circular_buffer.CircularBuffer`
164
164
165
165
166
-
0.27.32 (2024-12-15)
166
+
0.27.33 (2024-12-15)
167
167
~~~~~~~~~~~~~~~~~~~~
168
168
169
169
Added
@@ -172,7 +172,7 @@ Added
172
172
* Added action clip to all :class:`omni.isaac.lab.envs.mdp.actions`.
173
173
174
174
175
-
0.27.31 (2024-12-14)
175
+
0.27.32 (2024-12-14)
176
176
~~~~~~~~~~~~~~~~~~~~
177
177
178
178
Changed
@@ -181,7 +181,7 @@ Changed
181
181
* Added check for error below threshold in state machines to ensure the state has been reached.
182
182
183
183
184
-
0.27.30 (2024-12-13)
184
+
0.27.31 (2024-12-13)
185
185
~~~~~~~~~~~~~~~~~~~~
186
186
187
187
Fixed
@@ -190,7 +190,7 @@ Fixed
190
190
* Fixed the shape of ``quat_w`` in the ``apply_actions`` method of :attr:`~omni.isaac.lab.env.mdp.NonHolonomicAction` (previously (N,B,4), now (N,4) since the number of root bodies B is required to be 1). Previously ``apply_actions`` errored because ``euler_xyz_from_quat`` requires inputs of shape (N,4).
191
191
192
192
193
-
0.27.29 (2024-12-11)
193
+
0.27.30 (2024-12-11)
194
194
~~~~~~~~~~~~~~~~~~~~
195
195
196
196
Changed
@@ -201,7 +201,7 @@ Changed
201
201
* Improved documentation to clarify the usage of the :meth:`~omni.isaac.lab.envs.mdp.rewards.base_height_l2` function in both flat and rough terrain settings.
202
202
203
203
204
-
0.27.28 (2024-12-11)
204
+
0.27.29 (2024-12-11)
205
205
~~~~~~~~~~~~~~~~~~~~
206
206
207
207
Fixed
@@ -211,7 +211,7 @@ Fixed
211
211
Jacobian computed w.r.t. to the root frame of the robot. This helps ensure that root pose does not affect the tracking.
212
212
213
213
214
-
0.27.27 (2024-12-09)
214
+
0.27.28 (2024-12-09)
215
215
~~~~~~~~~~~~~~~~~~~~
216
216
217
217
Fixed
@@ -221,7 +221,7 @@ Fixed
221
221
return only the states of the specified environment IDs.
disabled. Using an articulation root for rigid bodies is not needed and decreases overall performance.
243
243
244
244
245
-
0.27.24 (2024-12-06)
245
+
0.27.25 (2024-12-06)
246
246
~~~~~~~~~~~~~~~~~~~~
247
247
248
248
Fixed
@@ -252,7 +252,7 @@ Fixed
252
252
Earlier, the projection names used snakecase instead of camelcase.
253
253
254
254
255
-
0.27.23 (2024-12-06)
255
+
0.27.24 (2024-12-06)
256
256
~~~~~~~~~~~~~~~~~~~~
257
257
258
258
Added
@@ -270,7 +270,7 @@ Changed
270
270
:class:`~omni.isaac.lab.sensors.Camera` did not clip them and had a different behavior for both types.
271
271
272
272
273
-
0.27.22 (2024-12-05)
273
+
0.27.23 (2024-12-05)
274
274
~~~~~~~~~~~~~~~~~~~~
275
275
276
276
Fixed
@@ -279,7 +279,7 @@ Fixed
279
279
* Fixed the condition in ``isaaclab.sh`` that checks whether ``pre-commit`` is installed before attempting installation.
280
280
281
281
282
-
0.27.21 (2024-12-04)
282
+
0.27.22 (2024-12-04)
283
283
~~~~~~~~~~~~~~~~~~~~
284
284
285
285
Fixed
@@ -288,7 +288,7 @@ Fixed
288
288
* Fixed the order of the incoming parameters in :class:`omni.isaac.lab.envs.DirectMARLEnv` to correctly use ``NoiseModel`` in marl-envs.
289
289
290
290
291
-
0.27.20 (2024-12-04)
291
+
0.27.21 (2024-12-04)
292
292
~~~~~~~~~~~~~~~~~~~~
293
293
294
294
Added
@@ -303,7 +303,7 @@ Added
303
303
* Added ``replay_demos.py`` script to replay demos loaded from an HDF5 file.
304
304
305
305
306
-
0.27.19 (2024-12-02)
306
+
0.27.20 (2024-12-02)
307
307
~~~~~~~~~~~~~~~~~~~~
308
308
309
309
Changed
@@ -312,6 +312,16 @@ Changed
312
312
* Changed :class:`omni.isaac.lab.envs.DirectMARLEnv` to inherit from ``Gymnasium.Env`` due to requirement from Gymnasium v1.0.0 requiring all environments to be a subclass of ``Gymnasium.Env`` when using the ``make`` interface.
313
313
314
314
315
+
0.27.19 (2024-12-02)
316
+
~~~~~~~~~~~~~~~~~~~~
317
+
318
+
Added
319
+
^^^^^
320
+
321
+
* Added ``omni.isaac.lab.utils.pretrained_checkpoints`` containing constants and utility functions used to manipulate
0 commit comments