Skip to content

Commit 7eef4a4

Browse files
committed
Issue #184: Update RLlib logging and add connectors
1 parent 70233b9 commit 7eef4a4

14 files changed

+1670
-137
lines changed

.ruff.toml

+3
Original file line numberDiff line numberDiff line change
@@ -1 +1,4 @@
11
extend-include = ["*.ipynb"]
2+
3+
[lint.per-file-ignores]
4+
"docs/build/*" = ["D", "W", "F"]

docs/source/conf.py

+1
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,7 @@
4040
"sphinx.ext.napoleon",
4141
"sphinx_rtd_theme",
4242
"nbsphinx",
43+
"sphinx.ext.mathjax",
4344
]
4445

4546
templates_path = ["_templates"]

docs/source/release_notes.rst

+2
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,8 @@ Development Version
1313
object passed to the environment is not the same object as the one used in the environment,
1414
as is the case for rewarders and communication objects.
1515
* Add additional observation properties for satellites and opportunities.
16+
* Add connectors for multiagent semi-MDPs, as demonstrated in a new `single agent <examples/time_discounted_gae.ipynb>`_
17+
and `multiagent <examples/async_multiagent_training.ipynb>`_ example.
1618

1719

1820
Version 1.0.1

examples/_default.rst

+13-1
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,23 @@
11
Examples
22
========
33

4+
Environments
5+
------------
46
.. toctree::
57
:maxdepth: 1
68

79
simple_environment
810
satellite_configuration
9-
rllib_training
1011
multiagent_envs
1112
cloud_environment
13+
14+
15+
Training
16+
--------
17+
.. toctree::
18+
:maxdepth: 1
19+
20+
rllib_training
21+
time_discounted_gae
22+
async_multiagent_training
23+

0 commit comments

Comments
 (0)