MANIFEST.in
README.md
requirements.txt
setup.py
docs_raw/__init__.py
docs_raw/source/__init__.py
docs_raw/source/conf.py
rl_coach/__init__.py
rl_coach/base_parameters.py
rl_coach/checkpoint.py
rl_coach/coach.py
rl_coach/core_types.py
rl_coach/dashboard.py
rl_coach/debug_utils.py
rl_coach/level_manager.py
rl_coach/logger.py
rl_coach/plot_atari.py
rl_coach/renderer.py
rl_coach/rollout_worker.py
rl_coach/run_multiple_seeds.py
rl_coach/saver.py
rl_coach/schedules.py
rl_coach/spaces.py
rl_coach/training_worker.py
rl_coach/utils.py
rl_coach.egg-info/PKG-INFO
rl_coach.egg-info/SOURCES.txt
rl_coach.egg-info/dependency_links.txt
rl_coach.egg-info/entry_points.txt
rl_coach.egg-info/requires.txt
rl_coach.egg-info/top_level.txt
rl_coach/agents/__init__.py
rl_coach/agents/actor_critic_agent.py
rl_coach/agents/agent.py
rl_coach/agents/agent_interface.py
rl_coach/agents/bc_agent.py
rl_coach/agents/bootstrapped_dqn_agent.py
rl_coach/agents/categorical_dqn_agent.py
rl_coach/agents/cil_agent.py
rl_coach/agents/clipped_ppo_agent.py
rl_coach/agents/composite_agent.py
rl_coach/agents/ddpg_agent.py
rl_coach/agents/ddqn_agent.py
rl_coach/agents/dfp_agent.py
rl_coach/agents/dqn_agent.py
rl_coach/agents/hac_ddpg_agent.py
rl_coach/agents/human_agent.py
rl_coach/agents/imitation_agent.py
rl_coach/agents/mmc_agent.py
rl_coach/agents/n_step_q_agent.py
rl_coach/agents/naf_agent.py
rl_coach/agents/nec_agent.py
rl_coach/agents/pal_agent.py
rl_coach/agents/policy_gradients_agent.py
rl_coach/agents/policy_optimization_agent.py
rl_coach/agents/ppo_agent.py
rl_coach/agents/qr_dqn_agent.py
rl_coach/agents/rainbow_dqn_agent.py
rl_coach/agents/value_optimization_agent.py
rl_coach/architectures/__init__.py
rl_coach/architectures/architecture.py
rl_coach/architectures/embedder_parameters.py
rl_coach/architectures/head_parameters.py
rl_coach/architectures/layers.py
rl_coach/architectures/middleware_parameters.py
rl_coach/architectures/network_wrapper.py
rl_coach/architectures/mxnet_components/__init__.py
rl_coach/architectures/mxnet_components/architecture.py
rl_coach/architectures/mxnet_components/general_network.py
rl_coach/architectures/mxnet_components/layers.py
rl_coach/architectures/mxnet_components/savers.py
rl_coach/architectures/mxnet_components/utils.py
rl_coach/architectures/mxnet_components/embedders/__init__.py
rl_coach/architectures/mxnet_components/embedders/embedder.py
rl_coach/architectures/mxnet_components/embedders/image_embedder.py
rl_coach/architectures/mxnet_components/embedders/tensor_embedder.py
rl_coach/architectures/mxnet_components/embedders/vector_embedder.py
rl_coach/architectures/mxnet_components/heads/__init__.py
rl_coach/architectures/mxnet_components/heads/head.py
rl_coach/architectures/mxnet_components/heads/ppo_head.py
rl_coach/architectures/mxnet_components/heads/ppo_v_head.py
rl_coach/architectures/mxnet_components/heads/q_head.py
rl_coach/architectures/mxnet_components/heads/v_head.py
rl_coach/architectures/mxnet_components/middlewares/__init__.py
rl_coach/architectures/mxnet_components/middlewares/fc_middleware.py
rl_coach/architectures/mxnet_components/middlewares/lstm_middleware.py
rl_coach/architectures/mxnet_components/middlewares/middleware.py
rl_coach/architectures/tensorflow_components/__init__.py
rl_coach/architectures/tensorflow_components/architecture.py
rl_coach/architectures/tensorflow_components/distributed_tf_utils.py
rl_coach/architectures/tensorflow_components/general_network.py
rl_coach/architectures/tensorflow_components/layers.py
rl_coach/architectures/tensorflow_components/savers.py
rl_coach/architectures/tensorflow_components/shared_variables.py
rl_coach/architectures/tensorflow_components/utils.py
rl_coach/architectures/tensorflow_components/embedders/__init__.py
rl_coach/architectures/tensorflow_components/embedders/embedder.py
rl_coach/architectures/tensorflow_components/embedders/image_embedder.py
rl_coach/architectures/tensorflow_components/embedders/tensor_embedder.py
rl_coach/architectures/tensorflow_components/embedders/vector_embedder.py
rl_coach/architectures/tensorflow_components/heads/__init__.py
rl_coach/architectures/tensorflow_components/heads/categorical_q_head.py
rl_coach/architectures/tensorflow_components/heads/cil_head.py
rl_coach/architectures/tensorflow_components/heads/ddpg_actor_head.py
rl_coach/architectures/tensorflow_components/heads/dnd_q_head.py
rl_coach/architectures/tensorflow_components/heads/dueling_q_head.py
rl_coach/architectures/tensorflow_components/heads/head.py
rl_coach/architectures/tensorflow_components/heads/measurements_prediction_head.py
rl_coach/architectures/tensorflow_components/heads/naf_head.py
rl_coach/architectures/tensorflow_components/heads/policy_head.py
rl_coach/architectures/tensorflow_components/heads/ppo_head.py
rl_coach/architectures/tensorflow_components/heads/ppo_v_head.py
rl_coach/architectures/tensorflow_components/heads/q_head.py
rl_coach/architectures/tensorflow_components/heads/quantile_regression_q_head.py
rl_coach/architectures/tensorflow_components/heads/rainbow_q_head.py
rl_coach/architectures/tensorflow_components/heads/v_head.py
rl_coach/architectures/tensorflow_components/middlewares/__init__.py
rl_coach/architectures/tensorflow_components/middlewares/fc_middleware.py
rl_coach/architectures/tensorflow_components/middlewares/lstm_middleware.py
rl_coach/architectures/tensorflow_components/middlewares/middleware.py
rl_coach/dashboard_components/__init__.py
rl_coach/dashboard_components/boards.py
rl_coach/dashboard_components/episodic_board.py
rl_coach/dashboard_components/experiment_board.py
rl_coach/dashboard_components/globals.py
rl_coach/dashboard_components/landing_page.py
rl_coach/dashboard_components/signals.py
rl_coach/dashboard_components/signals_file.py
rl_coach/dashboard_components/signals_file_base.py
rl_coach/dashboard_components/signals_files_group.py
rl_coach/dashboard_components/spinner.css
rl_coach/data_stores/__init__.py
rl_coach/data_stores/data_store.py
rl_coach/data_stores/data_store_impl.py
rl_coach/data_stores/nfs_data_store.py
rl_coach/data_stores/s3_data_store.py
rl_coach/environments/CarlaSettings.ini
rl_coach/environments/__init__.py
rl_coach/environments/carla_environment.py
rl_coach/environments/control_suite_environment.py
rl_coach/environments/doom_environment.py
rl_coach/environments/environment.py
rl_coach/environments/environment_interface.py
rl_coach/environments/gym_environment.py
rl_coach/environments/starcraft2_environment.py
rl_coach/environments/doom/D2_navigation.cfg
rl_coach/environments/doom/D2_navigation.wad
rl_coach/environments/doom/D3_battle.cfg
rl_coach/environments/doom/D3_battle.wad
rl_coach/environments/mujoco/__init__.py
rl_coach/environments/mujoco/pendulum_with_goals.py
rl_coach/environments/mujoco/pendulum_with_goals.xml
rl_coach/environments/mujoco/common/__init__.py
rl_coach/environments/mujoco/common/materials.xml
rl_coach/environments/mujoco/common/skybox.xml
rl_coach/environments/mujoco/common/visual.xml
rl_coach/environments/toy_problems/__init__.py
rl_coach/environments/toy_problems/bit_flip.py
rl_coach/environments/toy_problems/exploration_chain.py
rl_coach/exploration_policies/__init__.py
rl_coach/exploration_policies/additive_noise.py
rl_coach/exploration_policies/boltzmann.py
rl_coach/exploration_policies/bootstrapped.py
rl_coach/exploration_policies/categorical.py
rl_coach/exploration_policies/continuous_entropy.py
rl_coach/exploration_policies/e_greedy.py
rl_coach/exploration_policies/exploration_policy.py
rl_coach/exploration_policies/greedy.py
rl_coach/exploration_policies/ou_process.py
rl_coach/exploration_policies/parameter_noise.py
rl_coach/exploration_policies/truncated_normal.py
rl_coach/exploration_policies/ucb.py
rl_coach/filters/__init__.py
rl_coach/filters/filter.py
rl_coach/filters/action/__init__.py
rl_coach/filters/action/action_filter.py
rl_coach/filters/action/attention_discretization.py
rl_coach/filters/action/box_discretization.py
rl_coach/filters/action/box_masking.py
rl_coach/filters/action/full_discrete_action_space_map.py
rl_coach/filters/action/linear_box_to_box_map.py
rl_coach/filters/action/partial_discrete_action_space_map.py
rl_coach/filters/observation/__init__.py
rl_coach/filters/observation/observation_clipping_filter.py
rl_coach/filters/observation/observation_crop_filter.py
rl_coach/filters/observation/observation_filter.py
rl_coach/filters/observation/observation_move_axis_filter.py
rl_coach/filters/observation/observation_normalization_filter.py
rl_coach/filters/observation/observation_reduction_by_sub_parts_name_filter.py
rl_coach/filters/observation/observation_rescale_size_by_factor_filter.py
rl_coach/filters/observation/observation_rescale_to_size_filter.py
rl_coach/filters/observation/observation_rgb_to_y_filter.py
rl_coach/filters/observation/observation_squeeze_filter.py
rl_coach/filters/observation/observation_stacking_filter.py
rl_coach/filters/observation/observation_to_uint8_filter.py
rl_coach/filters/reward/__init__.py
rl_coach/filters/reward/reward_clipping_filter.py
rl_coach/filters/reward/reward_filter.py
rl_coach/filters/reward/reward_normalization_filter.py
rl_coach/filters/reward/reward_rescale_filter.py
rl_coach/graph_managers/__init__.py
rl_coach/graph_managers/basic_rl_graph_manager.py
rl_coach/graph_managers/graph_manager.py
rl_coach/graph_managers/hac_graph_manager.py
rl_coach/graph_managers/hrl_graph_manager.py
rl_coach/memories/__init__.py
rl_coach/memories/memory.py
rl_coach/memories/backend/__init__.py
rl_coach/memories/backend/memory.py
rl_coach/memories/backend/memory_impl.py
rl_coach/memories/backend/redis.py
rl_coach/memories/episodic/__init__.py
rl_coach/memories/episodic/episodic_experience_replay.py
rl_coach/memories/episodic/episodic_hindsight_experience_replay.py
rl_coach/memories/episodic/episodic_hrl_hindsight_experience_replay.py
rl_coach/memories/episodic/single_episode_buffer.py
rl_coach/memories/non_episodic/__init__.py
rl_coach/memories/non_episodic/balanced_experience_replay.py
rl_coach/memories/non_episodic/differentiable_neural_dictionary.py
rl_coach/memories/non_episodic/experience_replay.py
rl_coach/memories/non_episodic/prioritized_experience_replay.py
rl_coach/memories/non_episodic/transition_collection.py
rl_coach/orchestrators/__init__.py
rl_coach/orchestrators/deploy.py
rl_coach/orchestrators/kubernetes_orchestrator.py
rl_coach/presets/Atari_A3C.py
rl_coach/presets/Atari_A3C_LSTM.py
rl_coach/presets/Atari_Bootstrapped_DQN.py
rl_coach/presets/Atari_C51.py
rl_coach/presets/Atari_DDQN.py
rl_coach/presets/Atari_DDQN_with_PER.py
rl_coach/presets/Atari_DQN.py
rl_coach/presets/Atari_DQN_with_PER.py
rl_coach/presets/Atari_Dueling_DDQN.py
rl_coach/presets/Atari_Dueling_DDQN_with_PER_OpenAI.py
rl_coach/presets/Atari_NEC.py
rl_coach/presets/Atari_NStepQ.py
rl_coach/presets/Atari_QR_DQN.py
rl_coach/presets/Atari_Rainbow.py
rl_coach/presets/Atari_UCB_with_Q_Ensembles.py
rl_coach/presets/BitFlip_DQN.py
rl_coach/presets/BitFlip_DQN_HER.py
rl_coach/presets/CARLA_3_Cameras_DDPG.py
rl_coach/presets/CARLA_CIL.py
rl_coach/presets/CARLA_DDPG.py
rl_coach/presets/CARLA_Dueling_DDQN.py
rl_coach/presets/CartPole_A3C.py
rl_coach/presets/CartPole_ClippedPPO.py
rl_coach/presets/CartPole_DFP.py
rl_coach/presets/CartPole_DQN.py
rl_coach/presets/CartPole_Dueling_DDQN.py
rl_coach/presets/CartPole_NEC.py
rl_coach/presets/CartPole_NStepQ.py
rl_coach/presets/CartPole_PAL.py
rl_coach/presets/CartPole_PG.py
rl_coach/presets/ControlSuite_DDPG.py
rl_coach/presets/Doom_Basic_A3C.py
rl_coach/presets/Doom_Basic_BC.py
rl_coach/presets/Doom_Basic_DFP.py
rl_coach/presets/Doom_Basic_DQN.py
rl_coach/presets/Doom_Basic_Dueling_DDQN.py
rl_coach/presets/Doom_Battle_DFP.py
rl_coach/presets/Doom_Health_DFP.py
rl_coach/presets/Doom_Health_MMC.py
rl_coach/presets/Doom_Health_Supreme_DFP.py
rl_coach/presets/ExplorationChain_Bootstrapped_DQN.py
rl_coach/presets/ExplorationChain_Dueling_DDQN.py
rl_coach/presets/ExplorationChain_UCB_Q_ensembles.py
rl_coach/presets/Fetch_DDPG_HER_baselines.py
rl_coach/presets/InvertedPendulum_PG.py
rl_coach/presets/MontezumaRevenge_BC.py
rl_coach/presets/Mujoco_A3C.py
rl_coach/presets/Mujoco_A3C_LSTM.py
rl_coach/presets/Mujoco_ClippedPPO.py
rl_coach/presets/Mujoco_DDPG.py
rl_coach/presets/Mujoco_NAF.py
rl_coach/presets/Mujoco_PPO.py
rl_coach/presets/Pendulum_HAC.py
rl_coach/presets/Starcraft_CollectMinerals_A3C.py
rl_coach/presets/Starcraft_CollectMinerals_Dueling_DDQN.py
rl_coach/presets/__init__.py
rl_coach/tests/__init__.py
rl_coach/tests/golden_tests.py
rl_coach/tests/pytest.ini
rl_coach/tests/test_checkpoint.py
rl_coach/tests/test_core_types.py
rl_coach/tests/test_eks.py
rl_coach/tests/test_golden.py
rl_coach/tests/test_saver.py
rl_coach/tests/test_schedules.py
rl_coach/tests/test_spaces.py
rl_coach/tests/trace_tests.py
rl_coach/tests/agents/__init__.py
rl_coach/tests/agents/test_agent_external_communication.py
rl_coach/tests/architectures/__init__.py
rl_coach/tests/architectures/mxnet_components/__init__.py
rl_coach/tests/architectures/mxnet_components/test_utils.py
rl_coach/tests/architectures/mxnet_components/embedders/__init__.py
rl_coach/tests/architectures/mxnet_components/embedders/test_image_embedder.py
rl_coach/tests/architectures/mxnet_components/embedders/test_vector_embedder.py
rl_coach/tests/architectures/mxnet_components/heads/__init__.py
rl_coach/tests/architectures/mxnet_components/heads/test_head.py
rl_coach/tests/architectures/mxnet_components/heads/test_ppo_head.py
rl_coach/tests/architectures/mxnet_components/heads/test_ppo_v_head.py
rl_coach/tests/architectures/mxnet_components/heads/test_q_head.py
rl_coach/tests/architectures/mxnet_components/heads/test_v_head.py
rl_coach/tests/architectures/mxnet_components/middlewares/__init__.py
rl_coach/tests/architectures/mxnet_components/middlewares/test_fc_middleware.py
rl_coach/tests/architectures/mxnet_components/middlewares/test_lstm_middleware.py
rl_coach/tests/architectures/tensorflow_components/__init__.py
rl_coach/tests/architectures/tensorflow_components/embedders/__init__.py
rl_coach/tests/architectures/tensorflow_components/embedders/test_identity_embedder.py
rl_coach/tests/architectures/tensorflow_components/embedders/test_image_embedder.py
rl_coach/tests/architectures/tensorflow_components/embedders/test_vector_embedder.py
rl_coach/tests/environments/__init__.py
rl_coach/tests/environments/test_gym_environment.py
rl_coach/tests/exploration_policies/__init__.py
rl_coach/tests/exploration_policies/test_additive_noise.py
rl_coach/tests/exploration_policies/test_e_greedy.py
rl_coach/tests/exploration_policies/test_greedy.py
rl_coach/tests/exploration_policies/test_ou_process.py
rl_coach/tests/filters/__init__.py
rl_coach/tests/filters/test_filters_stacking.py
rl_coach/tests/filters/action/__init__.py
rl_coach/tests/filters/action/test_attention_discretization.py
rl_coach/tests/filters/action/test_box_discretization.py
rl_coach/tests/filters/action/test_box_masking.py
rl_coach/tests/filters/action/test_linear_box_to_box_map.py
rl_coach/tests/filters/observation/__init__.py
rl_coach/tests/filters/observation/test_observation_crop_filter.py
rl_coach/tests/filters/observation/test_observation_reduction_by_sub_parts_name_filter.py
rl_coach/tests/filters/observation/test_observation_rescale_size_by_factor_filter.py
rl_coach/tests/filters/observation/test_observation_rescale_to_size_filter.py
rl_coach/tests/filters/observation/test_observation_rgb_to_y_filter.py
rl_coach/tests/filters/observation/test_observation_squeeze_filter.py
rl_coach/tests/filters/observation/test_observation_stacking_filter.py
rl_coach/tests/filters/observation/test_observation_to_uint8_filter.py
rl_coach/tests/filters/reward/__init__.py
rl_coach/tests/filters/reward/test_reward_clipping_filter.py
rl_coach/tests/filters/reward/test_reward_rescale_filter.py
rl_coach/tests/graph_managers/__init__.py
rl_coach/tests/graph_managers/test_basic_rl_graph_manager.py
rl_coach/tests/graph_managers/test_graph_manager.py
rl_coach/tests/memories/__init__.py
rl_coach/tests/memories/test_differential_neural_dictionary.py
rl_coach/tests/memories/test_hindsight_experience_replay.py
rl_coach/tests/memories/test_prioritized_experience_replay.py
rl_coach/tests/memories/test_single_episode_buffer.py
rl_coach/tests/presets/__init__.py
rl_coach/tests/presets/test_presets.py
rl_coach/utilities/__init__.py
rl_coach/utilities/carla_dataset_to_replay_buffer.py
rl_coach/utilities/shared_running_stats.py