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
Copy file name to clipboardExpand all lines: docs/source/experimental-features/bleeding-edge.rst
+4-1Lines changed: 4 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -11,7 +11,7 @@ To address this, some major features will be released as Experimental Feature Br
11
11
This way, the community can experiment with and contribute to the feature before it's fully integrated, reducing the likelihood of being derailed by unexpected and new errors.
12
12
13
13
RL Post-Training for VLA Models
14
-
---------------------------------
14
+
-------------------------------
15
15
16
16
`RLinf <https://github.com/RLinf/RLinf.git>`_ is a flexible and scalable open-source RL infrastructure designed for
17
17
Embodied and Agentic AI. This integration enables **reinforcement learning fine-tuning of Vision-Language-Action
@@ -83,6 +83,9 @@ From the Isaac Lab root directory:
83
83
pip install -e .[base] --no-deps
84
84
cd ../
85
85
86
+
# Install flash-attn (must be built against the correct PyTorch)
Copy file name to clipboardExpand all lines: docs/source/how-to/import_new_asset.rst
+110-7Lines changed: 110 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -46,11 +46,12 @@ is then passed to the :class:`~sim.converters.UrdfConverter` class.
46
46
The URDF importer has various configuration parameters that can be set to control the behavior of the importer.
47
47
The default values for the importer's configuration parameters are specified are in the :class:`~sim.converters.UrdfConverterCfg` class, and they are listed below. We made a few commonly modified settings to be available as command-line arguments when calling the ``convert_urdf.py``, and they are marked with ``*`` in the list. For a comprehensive list of the configuration parameters, please check the the documentation at `URDF importer`_.
48
48
49
+
Articulation and joint structure
50
+
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
51
+
49
52
* :attr:`~sim.converters.UrdfConverterCfg.fix_base` * - Whether to fix the base of the robot.
50
53
This depends on whether you have a floating-base or fixed-base robot. The command-line flag is
51
54
``--fix-base`` where when set, the importer will fix the base of the robot, otherwise it will default to floating-base.
52
-
* :attr:`~sim.converters.UrdfConverterCfg.root_link_name` - The link on which the PhysX articulation root is placed.
53
-
**Deprecated in URDF importer 3.0** — this option is ignored.
54
55
* :attr:`~sim.converters.UrdfConverterCfg.merge_fixed_joints` * - Whether to merge the fixed joints.
55
56
Usually, this should be set to ``True`` to reduce the asset complexity. The command-line flag is
56
57
``--merge-joints`` where when set, the importer will merge the fixed joints, otherwise it will default to not merging the fixed joints.
@@ -65,10 +66,53 @@ The default values for the importer's configuration parameters are specified are
65
66
We support two ways to set the gains:
66
67
67
68
* :attr:`~sim.converters.UrdfConverterCfg.JointDriveCfg.PDGainsCfg` - To directly set the stiffness and damping.
69
+
Both ``stiffness`` and ``damping`` accept a single float (applied uniformly).
68
70
* :attr:`~sim.converters.UrdfConverterCfg.JointDriveCfg.NaturalFrequencyGainsCfg` - To set the gains using the
69
71
desired natural frequency response of the system. **Deprecated in URDF importer 3.0** — use
70
72
``PDGainsCfg`` instead.
71
73
74
+
Geometry, collisions, and materials
75
+
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
76
+
77
+
* :attr:`~sim.converters.UrdfConverterCfg.collision_from_visuals` - Whether to create collision geometry
78
+
from visual geometry when no explicit ``<collision>`` is defined for a link. Defaults to ``False``.
79
+
* :attr:`~sim.converters.UrdfConverterCfg.collision_type` - The collision shape simplification to apply.
80
+
One of ``"Convex Hull"`` (default), ``"Convex Decomposition"``, ``"Bounding Sphere"``, or ``"Bounding Cube"``.
81
+
* :attr:`~sim.converters.UrdfConverterCfg.self_collision` - Whether to activate self-collisions between
82
+
links of the articulation. Defaults to ``False``.
83
+
* :attr:`~sim.converters.UrdfConverterCfg.merge_mesh` - Whether to merge meshes where possible to optimize
84
+
the model. Defaults to ``False``.
85
+
* :attr:`~sim.converters.UrdfConverterCfg.link_density` - Default density in ``kg/m^3`` for links whose
86
+
``<inertial>`` properties are missing. ``0.0`` (default) leaves densities unchanged.
87
+
88
+
Asset resolution and output
89
+
~~~~~~~~~~~~~~~~~~~~~~~~~~~
90
+
91
+
* :attr:`~sim.converters.UrdfConverterCfg.ros_package_paths` - List of ROS package name/path mappings used
92
+
to resolve ``package://`` URLs in the URDF. Each entry is a dict with keys ``name`` and ``path``.
93
+
* :attr:`~sim.converters.UrdfConverterCfg.robot_type` - Robot type applied by the USD robot schema.
94
+
Defaults to ``"Default"``. Must be one of: ``"Default"``, ``"End Effector"``, ``"Manipulator"``,
0 commit comments