.gitignore
.pre-commit-config.yaml
LICENSE
README.md
pyproject.toml
.github/workflows/build-docs.yml
.github/workflows/test-and-publish.yml
.github/workflows/test.yml
docs/.nojekyll
docs/Makefile
docs/cli.rst
docs/conf.py
docs/index.html
docs/index.rst
docs/make.bat
docs/requirements.txt
docs/_static/custom.css
docs/_static/rl8-examples-solving-cartpole.png
docs/_static/rl8-logo.png
examples/README.rst
examples/algotrading/README.rst
examples/algotrading/__main__.py
examples/algotrading/env.py
examples/algotrading/models/__init__.py
examples/algotrading/models/lstm.py
examples/algotrading/models/mlp.py
examples/algotrading/models/transformer.py
examples/cartpole/README.rst
examples/cartpole/__main__.py
examples/cartpole/env.py
examples/mountain_car/README.rst
examples/mountain_car/__main__.py
examples/mountain_car/env.py
examples/pendulum/README.rst
examples/pendulum/__main__.py
examples/pendulum/env.py
src/rl8/__init__.py
src/rl8/__main__.py
src/rl8/_utils.py
src/rl8/conditions.py
src/rl8/data.py
src/rl8/distributions.py
src/rl8/env.py
src/rl8/schedulers.py
src/rl8/views.py
src/rl8.egg-info/PKG-INFO
src/rl8.egg-info/SOURCES.txt
src/rl8.egg-info/dependency_links.txt
src/rl8.egg-info/entry_points.txt
src/rl8.egg-info/requires.txt
src/rl8.egg-info/top_level.txt
src/rl8/algorithms/__init__.py
src/rl8/algorithms/_base.py
src/rl8/algorithms/_feedforward.py
src/rl8/algorithms/_recurrent.py
src/rl8/models/__init__.py
src/rl8/models/_base.py
src/rl8/models/_feedforward.py
src/rl8/models/_recurrent.py
src/rl8/nn/__init__.py
src/rl8/nn/functional.py
src/rl8/nn/modules/__init__.py
src/rl8/nn/modules/activations.py
src/rl8/nn/modules/attention.py
src/rl8/nn/modules/embeddings.py
src/rl8/nn/modules/mlp.py
src/rl8/nn/modules/module.py
src/rl8/nn/modules/perceiver.py
src/rl8/nn/modules/skip.py
src/rl8/policies/__init__.py
src/rl8/policies/_base.py
src/rl8/policies/_feedforward.py
src/rl8/policies/_recurrent.py
src/rl8/trainers/__init__.py
src/rl8/trainers/_base.py
src/rl8/trainers/_feedforward.py
src/rl8/trainers/_recurrent.py
src/rl8/trainers/config.py
tests/__init__.py
tests/test_algorithms.py
tests/test_conditions.py
tests/test_policies.py
tests/test_schedulers.py
tests/test_trainers.py
tests/test_views.py
tests/test_nn/__init__.py
tests/test_nn/test_functional.py