1
0
mirror of https://github.com/gryf/coach.git synced 2025-12-17 11:10:20 +01:00

Documentation fix

This commit is contained in:
Gal Novik
2018-11-27 22:32:46 +02:00
parent 05c1005e94
commit 7e3aca22eb
5 changed files with 8 additions and 8 deletions

View File

@@ -132,7 +132,7 @@ When playing with the environment using the :code:`--play` flag, the environment
.. code-block:: python
coach -p Breakout_DQN -r
coach -p Atari_DQN -lvl breakout -r
Dumping GIFs
++++++++++++
@@ -145,7 +145,7 @@ The files are dumped after every evaluation episode, and are saved into the expe
.. code-block:: python
coach -p Breakout_A3C -n 4 -dg
coach -p Atari_A3C -lvl breakout -n 4 -dg
Switching Between Deep Learning Frameworks
------------------------------------------

File diff suppressed because one or more lines are too long

View File

@@ -292,7 +292,7 @@ When working with single-threaded algorithms, the rendered image will be represe
Keep in mind that rendering the environment in single-threaded algorithms may slow the training to some extent.
When playing with the environment using the <code class="code docutils literal notranslate"><span class="pre">--play</span></code> flag, the environment will be rendered automatically without the need for specifying the <code class="code docutils literal notranslate"><span class="pre">-r</span></code> flag.</p>
<p><em>Example:</em></p>
<div class="highlight-python notranslate"><div class="highlight"><pre><span></span><span class="n">coach</span> <span class="o">-</span><span class="n">p</span> <span class="n">Breakout_DQN</span> <span class="o">-</span><span class="n">r</span>
<div class="highlight-python notranslate"><div class="highlight"><pre><span></span><span class="n">coach</span> <span class="o">-</span><span class="n">p</span> <span class="n">Atari_DQN</span> <span class="o">-</span><span class="n">lvl</span> <span class="n">breakout</span> <span class="o">-</span><span class="n">r</span>
</pre></div>
</div>
</div>
@@ -302,7 +302,7 @@ When playing with the environment using the <code class="code docutils literal n
To dump GIF files, use the <code class="code docutils literal notranslate"><span class="pre">-dg</span></code> flag.
The files are dumped after every evaluation episode, and are saved into the experiment directory, under a gifs sub-directory.</p>
<p><em>Example:</em></p>
<div class="highlight-python notranslate"><div class="highlight"><pre><span></span><span class="n">coach</span> <span class="o">-</span><span class="n">p</span> <span class="n">Breakout_A3C</span> <span class="o">-</span><span class="n">n</span> <span class="mi">4</span> <span class="o">-</span><span class="n">dg</span>
<div class="highlight-python notranslate"><div class="highlight"><pre><span></span><span class="n">coach</span> <span class="o">-</span><span class="n">p</span> <span class="n">Atari_A3C</span> <span class="o">-</span><span class="n">lvl</span> <span class="n">breakout</span> <span class="o">-</span><span class="n">n</span> <span class="mi">4</span> <span class="o">-</span><span class="n">dg</span>
</pre></div>
</div>
</div>