Skip to content

Commit 94b28ef

Browse files
committed
deploy: f17db88
1 parent 65b2d72 commit 94b28ef

File tree

5 files changed

+337
-312
lines changed

5 files changed

+337
-312
lines changed

main/_sources/source/overview/reinforcement-learning/rl_frameworks.rst

Lines changed: 15 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -71,18 +71,26 @@ Training Performance
7171
--------------------
7272

7373
We performed training with each RL library on the same ``Isaac-Humanoid-v0`` environment
74-
with ``--headless`` on a single RTX PRO 6000 GPU using 4096 environments
75-
and logged the total training time for 65.5M steps for each RL library.
76-
74+
with ``--headless`` on a single NVIDIA GeForce RTX 4090 and logged the total training time
75+
for 65.5M steps (4096 environments x 32 rollout steps x 500 iterations).
7776

7877
+--------------------+-----------------+
7978
| RL Library | Time in seconds |
8079
+====================+=================+
81-
| RL-Games | 207 |
80+
| RL-Games | 201 |
8281
+--------------------+-----------------+
83-
| SKRL | 208 |
82+
| SKRL | 201 |
8483
+--------------------+-----------------+
85-
| RSL RL | 199 |
84+
| RSL RL | 198 |
8685
+--------------------+-----------------+
87-
| Stable-Baselines3 | 322 |
86+
| Stable-Baselines3 | 287 |
8887
+--------------------+-----------------+
88+
89+
Training commands (check for the *'Training time: XXX seconds'* line in the terminal output):
90+
91+
.. code:: bash
92+
93+
python scripts/reinforcement_learning/rl_games/train.py --task Isaac-Humanoid-v0 --max_iterations 500 --headless
94+
python scripts/reinforcement_learning/skrl/train.py --task Isaac-Humanoid-v0 --max_iterations 500 --headless
95+
python scripts/reinforcement_learning/rsl_rl/train.py --task Isaac-Humanoid-v0 --max_iterations 500 --headless
96+
python scripts/reinforcement_learning/sb3/train.py --task Isaac-Humanoid-v0 --max_iterations 500 --headless

main/searchindex.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

main/source/overview/reinforcement-learning/rl_frameworks.html

Lines changed: 13 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -753,8 +753,8 @@ <h2>Feature Comparison<a class="headerlink" href="#feature-comparison" title="Pe
753753
<section id="training-performance">
754754
<h2>Training Performance<a class="headerlink" href="#training-performance" title="Permalink to this heading">#</a></h2>
755755
<p>We performed training with each RL library on the same <code class="docutils literal notranslate"><span class="pre">Isaac-Humanoid-v0</span></code> environment
756-
with <code class="docutils literal notranslate"><span class="pre">--headless</span></code> on a single RTX PRO 6000 GPU using 4096 environments
757-
and logged the total training time for 65.5M steps for each RL library.</p>
756+
with <code class="docutils literal notranslate"><span class="pre">--headless</span></code> on a single NVIDIA GeForce RTX 4090 and logged the total training time
757+
for 65.5M steps (4096 environments x 32 rollout steps x 500 iterations).</p>
758758
<div class="pst-scrollable-table-container"><table class="table">
759759
<thead>
760760
<tr class="row-odd"><th class="head"><p>RL Library</p></th>
@@ -763,20 +763,27 @@ <h2>Training Performance<a class="headerlink" href="#training-performance" title
763763
</thead>
764764
<tbody>
765765
<tr class="row-even"><td><p>RL-Games</p></td>
766-
<td><p>207</p></td>
766+
<td><p>201</p></td>
767767
</tr>
768768
<tr class="row-odd"><td><p>SKRL</p></td>
769-
<td><p>208</p></td>
769+
<td><p>201</p></td>
770770
</tr>
771771
<tr class="row-even"><td><p>RSL RL</p></td>
772-
<td><p>199</p></td>
772+
<td><p>198</p></td>
773773
</tr>
774774
<tr class="row-odd"><td><p>Stable-Baselines3</p></td>
775-
<td><p>322</p></td>
775+
<td><p>287</p></td>
776776
</tr>
777777
</tbody>
778778
</table>
779779
</div>
780+
<p>Training commands (check for the <em>‘Training time: XXX seconds’</em> line in the terminal output):</p>
781+
<div class="highlight-bash notranslate"><div class="highlight"><pre><span></span>python<span class="w"> </span>scripts/reinforcement_learning/rl_games/train.py<span class="w"> </span>--task<span class="w"> </span>Isaac-Humanoid-v0<span class="w"> </span>--max_iterations<span class="w"> </span><span class="m">500</span><span class="w"> </span>--headless
782+
python<span class="w"> </span>scripts/reinforcement_learning/skrl/train.py<span class="w"> </span>--task<span class="w"> </span>Isaac-Humanoid-v0<span class="w"> </span>--max_iterations<span class="w"> </span><span class="m">500</span><span class="w"> </span>--headless
783+
python<span class="w"> </span>scripts/reinforcement_learning/rsl_rl/train.py<span class="w"> </span>--task<span class="w"> </span>Isaac-Humanoid-v0<span class="w"> </span>--max_iterations<span class="w"> </span><span class="m">500</span><span class="w"> </span>--headless
784+
python<span class="w"> </span>scripts/reinforcement_learning/sb3/train.py<span class="w"> </span>--task<span class="w"> </span>Isaac-Humanoid-v0<span class="w"> </span>--max_iterations<span class="w"> </span><span class="m">500</span><span class="w"> </span>--headless
785+
</pre></div>
786+
</div>
780787
</section>
781788
</section>
782789

0 commit comments

Comments
 (0)