LICENSE
MANIFEST.in
README.md
pyproject.toml
setup.cfg
setup.py
assets/.DS_Store
assets/logo_avatar.png
assets/logo_square.svg
assets/logo_wide.svg
assets/rlberry.drawio
assets/rlberry.svg
rlberry/__init__.py
rlberry.egg-info/PKG-INFO
rlberry.egg-info/SOURCES.txt
rlberry.egg-info/dependency_links.txt
rlberry.egg-info/not-zip-safe
rlberry.egg-info/requires.txt
rlberry.egg-info/top_level.txt
rlberry/agents/__init__.py
rlberry/agents/agent.py
rlberry/agents/incremental_agent.py
rlberry/agents/adaptiveql/__init__.py
rlberry/agents/adaptiveql/adaptiveql.py
rlberry/agents/adaptiveql/tree.py
rlberry/agents/adaptiveql/utils.py
rlberry/agents/dynprog/__init__.py
rlberry/agents/dynprog/utils.py
rlberry/agents/dynprog/value_iteration.py
rlberry/agents/features/__init__.py
rlberry/agents/features/feature_map.py
rlberry/agents/kernel_based/__init__.py
rlberry/agents/kernel_based/common.py
rlberry/agents/kernel_based/kernels.py
rlberry/agents/kernel_based/rs_kernel_ucbvi.py
rlberry/agents/kernel_based/rs_ucbvi.py
rlberry/agents/mbqvi/__init__.py
rlberry/agents/mbqvi/mbqvi.py
rlberry/agents/optql/__init__.py
rlberry/agents/optql/optql.py
rlberry/agents/tests/__init__.py
rlberry/agents/tests/test_adaptiveql.py
rlberry/agents/tests/test_dynprog.py
rlberry/agents/tests/test_kernel_based.py
rlberry/agents/tests/test_mbqvi.py
rlberry/agents/tests/test_optql.py
rlberry/agents/tests/test_ucbvi.py
rlberry/agents/torch/__init__.py
rlberry/agents/torch/a2c/__init__.py
rlberry/agents/torch/a2c/a2c.py
rlberry/agents/torch/avec/__init__.py
rlberry/agents/torch/avec/avec_ppo.py
rlberry/agents/torch/dqn/__init__.py
rlberry/agents/torch/dqn/dqn.py
rlberry/agents/torch/dqn/exploration.py
rlberry/agents/torch/ppo/__init__.py
rlberry/agents/torch/ppo/ppo.py
rlberry/agents/torch/reinforce/__init__.py
rlberry/agents/torch/reinforce/reinforce.py
rlberry/agents/ucbvi/__init__.py
rlberry/agents/ucbvi/ucbvi.py
rlberry/agents/ucbvi/utils.py
rlberry/agents/utils/__init__.py
rlberry/agents/utils/memories.py
rlberry/colab_utils/__init__.py
rlberry/colab_utils/display_setup.py
rlberry/envs/__init__.py
rlberry/envs/basewrapper.py
rlberry/envs/gym_make.py
rlberry/envs/benchmarks/__init__.py
rlberry/envs/benchmarks/ball_exploration/__init__.py
rlberry/envs/benchmarks/ball_exploration/ball2d.py
rlberry/envs/benchmarks/ball_exploration/pball.py
rlberry/envs/benchmarks/generalization/__init__.py
rlberry/envs/benchmarks/generalization/twinrooms.py
rlberry/envs/benchmarks/grid_exploration/__init__.py
rlberry/envs/benchmarks/grid_exploration/apple_gold.py
rlberry/envs/benchmarks/grid_exploration/four_room.py
rlberry/envs/benchmarks/grid_exploration/nroom.py
rlberry/envs/benchmarks/grid_exploration/six_room.py
rlberry/envs/classic_control/__init__.py
rlberry/envs/classic_control/acrobot.py
rlberry/envs/classic_control/mountain_car.py
rlberry/envs/classic_control/pendulum.py
rlberry/envs/finite/__init__.py
rlberry/envs/finite/chain.py
rlberry/envs/finite/finite_mdp.py
rlberry/envs/finite/gridworld.py
rlberry/envs/interface/__init__.py
rlberry/envs/interface/model.py
rlberry/envs/tests/__init__.py
rlberry/envs/tests/test_env_seeding.py
rlberry/envs/tests/test_gym_env_seeding.py
rlberry/envs/tests/test_instantiation.py
rlberry/experiment/__init__.py
rlberry/experiment/generator.py
rlberry/experiment/load_results.py
rlberry/experiment/yaml_utils.py
rlberry/exploration_tools/__init__.py
rlberry/exploration_tools/discrete_counter.py
rlberry/exploration_tools/online_discretization_counter.py
rlberry/exploration_tools/typing.py
rlberry/exploration_tools/uncertainty_estimator.py
rlberry/exploration_tools/tests/__init__.py
rlberry/exploration_tools/tests/test_discrete_counter.py
rlberry/exploration_tools/torch/__init__.py
rlberry/exploration_tools/torch/rnd.py
rlberry/exploration_tools/torch/tests/__init__.py
rlberry/exploration_tools/torch/tests/test_rnd.py
rlberry/rendering/__init__.py
rlberry/rendering/common_shapes.py
rlberry/rendering/core.py
rlberry/rendering/opengl_render2d.py
rlberry/rendering/pygame_render2d.py
rlberry/rendering/render_interface.py
rlberry/rendering/utils.py
rlberry/rendering/tests/__init__.py
rlberry/rendering/tests/test_rendering_interface.py
rlberry/seeding/__init__.py
rlberry/seeding/seeder.py
rlberry/seeding/seeding.py
rlberry/seeding/tests/__init__.py
rlberry/seeding/tests/test_seeding.py
rlberry/seeding/tests/test_threads.py
rlberry/seeding/tests/test_threads_torch.py
rlberry/spaces/__init__.py
rlberry/spaces/box.py
rlberry/spaces/dict.py
rlberry/spaces/discrete.py
rlberry/spaces/multi_binary.py
rlberry/spaces/multi_discrete.py
rlberry/spaces/tuple.py
rlberry/spaces/tests/__init__.py
rlberry/spaces/tests/test_spaces.py
rlberry/stats/__init__.py
rlberry/stats/agent_stats.py
rlberry/stats/evaluation.py
rlberry/stats/multiple_stats.py
rlberry/stats/tests/__init__.py
rlberry/stats/tests/test_agent_stats.py
rlberry/stats/tests/test_agent_stats_seeding.py
rlberry/stats/tests/test_evaluation.py
rlberry/stats/tests/test_hyperparam_optim.py
rlberry/utils/__init__.py
rlberry/utils/binsearch.py
rlberry/utils/factory.py
rlberry/utils/jit_setup.py
rlberry/utils/logging.py
rlberry/utils/math.py
rlberry/utils/metrics.py
rlberry/utils/space_discretizer.py
rlberry/utils/torch.py
rlberry/utils/writers.py
rlberry/utils/tests/__init__.py
rlberry/utils/tests/test_binsearch.py
rlberry/utils/tests/test_metrics.py
rlberry/wrappers/__init__.py
rlberry/wrappers/autoreset.py
rlberry/wrappers/discretize_state.py
rlberry/wrappers/gym_utils.py
rlberry/wrappers/rescale_reward.py
rlberry/wrappers/scalarize.py
rlberry/wrappers/uncertainty_estimator_wrapper.py
rlberry/wrappers/vis2d.py
rlberry/wrappers/tests/__init__.py
rlberry/wrappers/tests/test_basewrapper.py
rlberry/wrappers/tests/test_common_wrappers.py
rlberry/wrappers/tests/test_gym_space_conversion.py
rlberry/wrappers/tests/test_wrapper_seeding.py