├── .github ├── GITHUB_ACTIONS.md ├── ISSUE_TEMPLATE │ ├── bug_report.yaml │ └── config.yml └── workflows │ ├── pre-commit.yml │ ├── python-publish-manual.yml │ ├── tests-jax.yml │ ├── tests-torch.yml │ └── tests-warp.yml ├── .gitignore ├── .pre-commit-config.yaml ├── .readthedocs.yaml ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── docs ├── Makefile ├── README.md ├── make.bat ├── requirements.txt └── source │ ├── 404.rst │ ├── _static │ ├── css │ │ ├── s5defs-roles.css │ │ └── skrl.css │ ├── data │ │ ├── 404-dark.svg │ │ ├── 404-light.svg │ │ ├── favicon.ico │ │ ├── logo-dark-mode.png │ │ ├── logo-jax.svg │ │ ├── logo-light-mode.png │ │ ├── logo-torch.svg │ │ ├── logo-warp.svg │ │ ├── skrl-up-transparent.png │ │ └── skrl-up.png │ └── imgs │ │ ├── data_tensorboard.jpg │ │ ├── example_bidexhands.png │ │ ├── example_deepmind.png │ │ ├── example_gym.png │ │ ├── example_isaacgym.png │ │ ├── example_isaaclab.png │ │ ├── example_parallel.jpg │ │ ├── example_shimmy.png │ │ ├── manual_trainer-dark.svg │ │ ├── manual_trainer-light.svg │ │ ├── model_categorical-dark.svg │ │ ├── model_categorical-light.svg │ │ ├── model_categorical_cnn-dark.svg │ │ ├── model_categorical_cnn-light.svg │ │ ├── model_categorical_mlp-dark.svg │ │ ├── model_categorical_mlp-light.svg │ │ ├── model_categorical_rnn-dark.svg │ │ ├── model_categorical_rnn-light.svg │ │ ├── model_deterministic-dark.svg │ │ ├── model_deterministic-light.svg │ │ ├── model_deterministic_cnn-dark.svg │ │ ├── model_deterministic_cnn-light.svg │ │ ├── model_deterministic_mlp-dark.svg │ │ ├── model_deterministic_mlp-light.svg │ │ ├── model_deterministic_rnn-dark.svg │ │ ├── model_deterministic_rnn-light.svg │ │ ├── model_gaussian-dark.svg │ │ ├── model_gaussian-light.svg │ │ ├── model_gaussian_cnn-dark.svg │ │ ├── model_gaussian_cnn-light.svg │ │ ├── model_gaussian_mlp-dark.svg │ │ ├── model_gaussian_mlp-light.svg │ │ ├── model_gaussian_rnn-dark.svg │ │ ├── model_gaussian_rnn-light.svg │ │ ├── model_multicategorical-dark.svg │ │ ├── model_multicategorical-light.svg │ │ ├── model_multivariate_gaussian-dark.svg │ │ ├── model_multivariate_gaussian-light.svg │ │ ├── multi_agent_wrapping-dark.svg │ │ ├── multi_agent_wrapping-light.svg │ │ ├── noise_gaussian.png │ │ ├── noise_ornstein_uhlenbeck.png │ │ ├── parallel_trainer-dark.svg │ │ ├── parallel_trainer-light.svg │ │ ├── rl_schema-dark.svg │ │ ├── rl_schema-light.svg │ │ ├── sequential_trainer-dark.svg │ │ ├── sequential_trainer-light.svg │ │ ├── utils_tensorboard_file_iterator.svg │ │ ├── wrapping-dark.svg │ │ └── wrapping-light.svg │ ├── api │ ├── agents.rst │ ├── agents │ │ ├── a2c.rst │ │ ├── amp.rst │ │ ├── cem.rst │ │ ├── ddpg.rst │ │ ├── ddqn.rst │ │ ├── dqn.rst │ │ ├── ppo.rst │ │ ├── q_learning.rst │ │ ├── rpo.rst │ │ ├── sac.rst │ │ ├── sarsa.rst │ │ ├── td3.rst │ │ └── trpo.rst │ ├── config │ │ └── frameworks.rst │ ├── envs.rst │ ├── envs │ │ ├── isaaclab.rst │ │ ├── multi_agents_wrapping.rst │ │ └── wrapping.rst │ ├── memories.rst │ ├── memories │ │ └── random.rst │ ├── models.rst │ ├── models │ │ ├── categorical.rst │ │ ├── deterministic.rst │ │ ├── gaussian.rst │ │ ├── multicategorical.rst │ │ ├── multivariate_gaussian.rst │ │ ├── shared_model.rst │ │ └── tabular.rst │ ├── multi_agents.rst │ ├── multi_agents │ │ ├── ippo.rst │ │ └── mappo.rst │ ├── resources.rst │ ├── resources │ │ ├── noises.rst │ │ ├── noises │ │ │ ├── gaussian.rst │ │ │ └── ornstein_uhlenbeck.rst │ │ ├── optimizers.rst │ │ ├── optimizers │ │ │ └── adam.rst │ │ ├── preprocessors.rst │ │ ├── preprocessors │ │ │ └── running_standard_scaler.rst │ │ ├── schedulers.rst │ │ └── schedulers │ │ │ └── kl_adaptive.rst │ ├── trainers.rst │ ├── trainers │ │ ├── parallel.rst │ │ ├── sequential.rst │ │ └── step.rst │ ├── utils.rst │ └── utils │ │ ├── distributed.rst │ │ ├── huggingface.rst │ │ ├── model_instantiators.rst │ │ ├── postprocessing.rst │ │ ├── runner.rst │ │ ├── seed.rst │ │ └── spaces.rst │ ├── conf.py │ ├── index.rst │ ├── intro │ ├── data.rst │ ├── examples.rst │ ├── getting_started.rst │ └── installation.rst │ └── snippets │ ├── agent.py │ ├── agents_basic_usage.py │ ├── categorical_model.py │ ├── data.py │ ├── deterministic_model.py │ ├── gaussian_model.py │ ├── loaders.py │ ├── memories.py │ ├── model_instantiators.txt │ ├── model_mixin.py │ ├── multi_agent.py │ ├── multi_agents_basic_usage.py │ ├── multicategorical_model.py │ ├── multivariate_gaussian_model.py │ ├── noises.py │ ├── runner.txt │ ├── shared_model.py │ ├── tabular_model.py │ ├── trainer.py │ ├── utils_distributed.txt │ ├── utils_postprocessing.py │ └── wrapping.py ├── examples ├── brax │ ├── jax_brax_inverted_pendulum_ppo.py │ └── torch_brax_inverted_pendulum_ppo.py ├── deepmind │ ├── torch_dm_cartpole_swingup_ddpg.py │ └── torch_dm_manipulation_stack_sac.py ├── gym │ ├── jax_gym_cartpole_cem.py │ ├── jax_gym_cartpole_dqn.py │ ├── jax_gym_pendulum_ddpg.py │ ├── jax_gym_pendulum_ppo.py │ ├── jax_gym_pendulum_sac.py │ ├── jax_gym_pendulum_td3.py │ ├── torch_gym_cartpole_cem.py │ ├── torch_gym_cartpole_dqn.py │ ├── torch_gym_frozen_lake_q_learning.py │ ├── torch_gym_pendulum_ddpg.py │ ├── torch_gym_pendulum_ddpg_td3_sac_parallel_unshared_memory.py │ ├── torch_gym_pendulum_ddpg_td3_sac_sequential_shared_memory.py │ ├── torch_gym_pendulum_ddpg_td3_sac_sequential_unshared_memory.py │ ├── torch_gym_pendulum_ppo.py │ ├── torch_gym_pendulum_sac.py │ ├── torch_gym_pendulum_td3.py │ ├── torch_gym_pendulum_trpo.py │ ├── torch_gym_pendulumnovel_ddpg.py │ ├── torch_gym_pendulumnovel_ddpg_gru.py │ ├── torch_gym_pendulumnovel_ddpg_lstm.py │ ├── torch_gym_pendulumnovel_ddpg_rnn.py │ ├── torch_gym_pendulumnovel_ppo.py │ ├── torch_gym_pendulumnovel_ppo_gru.py │ ├── torch_gym_pendulumnovel_ppo_lstm.py │ ├── torch_gym_pendulumnovel_ppo_rnn.py │ ├── torch_gym_pendulumnovel_sac.py │ ├── torch_gym_pendulumnovel_sac_gru.py │ ├── torch_gym_pendulumnovel_sac_lstm.py │ ├── torch_gym_pendulumnovel_sac_rnn.py │ ├── torch_gym_pendulumnovel_td3.py │ ├── torch_gym_pendulumnovel_td3_gru.py │ ├── torch_gym_pendulumnovel_td3_lstm.py │ ├── torch_gym_pendulumnovel_td3_rnn.py │ ├── torch_gym_pendulumnovel_trpo.py │ ├── torch_gym_pendulumnovel_trpo_gru.py │ ├── torch_gym_pendulumnovel_trpo_lstm.py │ ├── torch_gym_pendulumnovel_trpo_rnn.py │ └── torch_gym_taxi_sarsa.py ├── gymnasium │ ├── jax_gymnasium_cartpole_cem.py │ ├── jax_gymnasium_cartpole_dqn.py │ ├── jax_gymnasium_pendulum_ddpg.py │ ├── jax_gymnasium_pendulum_ppo.py │ ├── jax_gymnasium_pendulum_sac.py │ ├── jax_gymnasium_pendulum_td3.py │ ├── torch_gymnasium_cartpole_cem.py │ ├── torch_gymnasium_cartpole_dqn.py │ ├── torch_gymnasium_frozen_lake_q_learning.py │ ├── torch_gymnasium_pendulum_ddpg.py │ ├── torch_gymnasium_pendulum_ddpg_td3_sac_parallel_unshared_memory.py │ ├── torch_gymnasium_pendulum_ddpg_td3_sac_sequential_shared_memory.py │ ├── torch_gymnasium_pendulum_ddpg_td3_sac_sequential_unshared_memory.py │ ├── torch_gymnasium_pendulum_ppo.py │ ├── torch_gymnasium_pendulum_sac.py │ ├── torch_gymnasium_pendulum_td3.py │ ├── torch_gymnasium_pendulum_trpo.py │ ├── torch_gymnasium_pendulumnovel_ddpg.py │ ├── torch_gymnasium_pendulumnovel_ddpg_gru.py │ ├── torch_gymnasium_pendulumnovel_ddpg_lstm.py │ ├── torch_gymnasium_pendulumnovel_ddpg_rnn.py │ ├── torch_gymnasium_pendulumnovel_ppo.py │ ├── torch_gymnasium_pendulumnovel_ppo_gru.py │ ├── torch_gymnasium_pendulumnovel_ppo_lstm.py │ ├── torch_gymnasium_pendulumnovel_ppo_rnn.py │ ├── torch_gymnasium_pendulumnovel_sac.py │ ├── torch_gymnasium_pendulumnovel_sac_gru.py │ ├── torch_gymnasium_pendulumnovel_sac_lstm.py │ ├── torch_gymnasium_pendulumnovel_sac_rnn.py │ ├── torch_gymnasium_pendulumnovel_td3.py │ ├── torch_gymnasium_pendulumnovel_td3_gru.py │ ├── torch_gymnasium_pendulumnovel_td3_lstm.py │ ├── torch_gymnasium_pendulumnovel_td3_rnn.py │ ├── torch_gymnasium_pendulumnovel_trpo.py │ ├── torch_gymnasium_pendulumnovel_trpo_gru.py │ ├── torch_gymnasium_pendulumnovel_trpo_lstm.py │ ├── torch_gymnasium_pendulumnovel_trpo_rnn.py │ ├── torch_gymnasium_taxi_sarsa.py │ ├── warp_gymnasium_pendulum_ddpg.py │ ├── warp_gymnasium_pendulum_ppo.py │ └── warp_gymnasium_pendulum_sac.py ├── isaaclab │ ├── jax_ant_ddpg.py │ ├── jax_ant_sac.py │ ├── jax_ant_td3.py │ ├── torch_ant_ddpg.py │ ├── torch_ant_sac.py │ ├── torch_ant_td3.py │ ├── torch_cartpole_direct_box_box_ppo.py │ ├── torch_cartpole_direct_box_discrete_ppo.py │ ├── torch_cartpole_direct_box_multidiscrete_ppo.py │ ├── torch_cartpole_direct_dict_box_ppo.py │ ├── torch_cartpole_direct_dict_discrete_ppo.py │ ├── torch_cartpole_direct_dict_multidiscrete_ppo.py │ ├── torch_cartpole_direct_discrete_box_ppo.py │ ├── torch_cartpole_direct_discrete_discrete_ppo.py │ ├── torch_cartpole_direct_discrete_multidiscrete_ppo.py │ ├── torch_cartpole_direct_multidiscrete_box_ppo.py │ ├── torch_cartpole_direct_multidiscrete_discrete_ppo.py │ ├── torch_cartpole_direct_multidiscrete_multidiscrete_ppo.py │ ├── torch_cartpole_direct_tuple_box_ppo.py │ ├── torch_cartpole_direct_tuple_discrete_ppo.py │ ├── torch_cartpole_direct_tuple_multidiscrete_ppo.py │ ├── warp_ant_ddpg.py │ ├── warp_ant_sac.py │ └── warp_cartpole_direct_box_box_ppo.py ├── real_world │ ├── franka_emika_panda │ │ ├── reaching_franka_isaacgym_env.py │ │ ├── reaching_franka_isaacgym_skrl_eval.py │ │ ├── reaching_franka_isaacgym_skrl_train.py │ │ ├── reaching_franka_omniverse_isaacgym_env.py │ │ ├── reaching_franka_omniverse_isaacgym_skrl_eval.py │ │ ├── reaching_franka_omniverse_isaacgym_skrl_train.py │ │ ├── reaching_franka_real_env.py │ │ └── reaching_franka_real_skrl_eval.py │ └── kuka_lbr_iiwa │ │ ├── reaching_iiwa_omniverse_isaacgym_env.py │ │ ├── reaching_iiwa_omniverse_isaacgym_skrl_eval.py │ │ ├── reaching_iiwa_omniverse_isaacgym_skrl_train.py │ │ ├── reaching_iiwa_real_env.py │ │ ├── reaching_iiwa_real_ros2_env.py │ │ ├── reaching_iiwa_real_ros_env.py │ │ ├── reaching_iiwa_real_ros_ros2_skrl_eval.py │ │ └── reaching_iiwa_real_skrl_eval.py ├── run.bash ├── shimmy │ ├── jax_shimmy_atari_pong_dqn.py │ ├── jax_shimmy_dm_control_acrobot_swingup_sparse_sac.py │ ├── jax_shimmy_openai_gym_compatibility_pendulum_ddpg.py │ ├── torch_shimmy_atari_pong_dqn.py │ ├── torch_shimmy_dm_control_acrobot_swingup_sparse_sac.py │ └── torch_shimmy_openai_gym_compatibility_pendulum_ddpg.py └── utils │ └── tensorboard_file_iterator.py ├── pyproject.toml ├── skrl ├── __init__.py ├── agents │ ├── __init__.py │ ├── jax │ │ ├── __init__.py │ │ ├── a2c │ │ │ ├── __init__.py │ │ │ ├── a2c.py │ │ │ └── a2c_cfg.py │ │ ├── base.py │ │ ├── cem │ │ │ ├── __init__.py │ │ │ ├── cem.py │ │ │ └── cem_cfg.py │ │ ├── ddpg │ │ │ ├── __init__.py │ │ │ ├── ddpg.py │ │ │ └── ddpg_cfg.py │ │ ├── ddqn │ │ │ ├── __init__.py │ │ │ ├── ddqn.py │ │ │ └── ddqn_cfg.py │ │ ├── dqn │ │ │ ├── __init__.py │ │ │ ├── dqn.py │ │ │ └── dqn_cfg.py │ │ ├── ppo │ │ │ ├── __init__.py │ │ │ ├── ppo.py │ │ │ └── ppo_cfg.py │ │ ├── rpo │ │ │ ├── __init__.py │ │ │ ├── rpo.py │ │ │ └── rpo_cfg.py │ │ ├── sac │ │ │ ├── __init__.py │ │ │ ├── sac.py │ │ │ └── sac_cfg.py │ │ └── td3 │ │ │ ├── __init__.py │ │ │ ├── td3.py │ │ │ └── td3_cfg.py │ ├── torch │ │ ├── __init__.py │ │ ├── a2c │ │ │ ├── __init__.py │ │ │ ├── a2c.py │ │ │ ├── a2c_cfg.py │ │ │ └── a2c_rnn.py │ │ ├── amp │ │ │ ├── __init__.py │ │ │ ├── amp.py │ │ │ └── amp_cfg.py │ │ ├── base.py │ │ ├── cem │ │ │ ├── __init__.py │ │ │ ├── cem.py │ │ │ └── cem_cfg.py │ │ ├── ddpg │ │ │ ├── __init__.py │ │ │ ├── ddpg.py │ │ │ ├── ddpg_cfg.py │ │ │ └── ddpg_rnn.py │ │ ├── ddqn │ │ │ ├── __init__.py │ │ │ ├── ddqn.py │ │ │ └── ddqn_cfg.py │ │ ├── dqn │ │ │ ├── __init__.py │ │ │ ├── dqn.py │ │ │ └── dqn_cfg.py │ │ ├── ppo │ │ │ ├── __init__.py │ │ │ ├── ppo.py │ │ │ ├── ppo_cfg.py │ │ │ └── ppo_rnn.py │ │ ├── q_learning │ │ │ ├── __init__.py │ │ │ ├── q_learning.py │ │ │ └── q_learning_cfg.py │ │ ├── rpo │ │ │ ├── __init__.py │ │ │ ├── rpo.py │ │ │ ├── rpo_cfg.py │ │ │ └── rpo_rnn.py │ │ ├── sac │ │ │ ├── __init__.py │ │ │ ├── sac.py │ │ │ ├── sac_cfg.py │ │ │ └── sac_rnn.py │ │ ├── sarsa │ │ │ ├── __init__.py │ │ │ ├── sarsa.py │ │ │ └── sarsa_cfg.py │ │ ├── td3 │ │ │ ├── __init__.py │ │ │ ├── td3.py │ │ │ ├── td3_cfg.py │ │ │ └── td3_rnn.py │ │ └── trpo │ │ │ ├── __init__.py │ │ │ ├── trpo.py │ │ │ ├── trpo_cfg.py │ │ │ └── trpo_rnn.py │ └── warp │ │ ├── __init__.py │ │ ├── base.py │ │ ├── ddpg │ │ ├── __init__.py │ │ ├── ddpg.py │ │ └── ddpg_cfg.py │ │ ├── ppo │ │ ├── __init__.py │ │ ├── ppo.py │ │ └── ppo_cfg.py │ │ └── sac │ │ ├── __init__.py │ │ ├── sac.py │ │ └── sac_cfg.py ├── envs │ ├── __init__.py │ ├── loaders │ │ ├── __init__.py │ │ ├── jax │ │ │ ├── __init__.py │ │ │ └── isaaclab_envs.py │ │ ├── torch │ │ │ ├── __init__.py │ │ │ └── isaaclab_envs.py │ │ └── warp │ │ │ ├── __init__.py │ │ │ └── isaaclab_envs.py │ └── wrappers │ │ ├── __init__.py │ │ ├── jax │ │ ├── __init__.py │ │ ├── base.py │ │ ├── brax_envs.py │ │ ├── gym_envs.py │ │ ├── gymnasium_envs.py │ │ ├── isaaclab_envs.py │ │ └── pettingzoo_envs.py │ │ ├── torch │ │ ├── __init__.py │ │ ├── base.py │ │ ├── brax_envs.py │ │ ├── deepmind_envs.py │ │ ├── gym_envs.py │ │ ├── gymnasium_envs.py │ │ ├── isaaclab_envs.py │ │ └── pettingzoo_envs.py │ │ └── warp │ │ ├── __init__.py │ │ ├── base.py │ │ ├── gymnasium_envs.py │ │ └── isaaclab_envs.py ├── memories │ ├── __init__.py │ ├── jax │ │ ├── __init__.py │ │ ├── base.py │ │ └── random.py │ ├── torch │ │ ├── __init__.py │ │ ├── base.py │ │ └── random.py │ └── warp │ │ ├── __init__.py │ │ ├── base.py │ │ └── random.py ├── models │ ├── __init__.py │ ├── jax │ │ ├── __init__.py │ │ ├── base.py │ │ ├── categorical.py │ │ ├── deterministic.py │ │ ├── gaussian.py │ │ └── multicategorical.py │ ├── torch │ │ ├── __init__.py │ │ ├── base.py │ │ ├── categorical.py │ │ ├── deterministic.py │ │ ├── gaussian.py │ │ ├── multicategorical.py │ │ ├── multivariate_gaussian.py │ │ └── tabular.py │ └── warp │ │ ├── __init__.py │ │ ├── base.py │ │ ├── deterministic.py │ │ ├── gaussian.py │ │ └── nn │ │ ├── __init__.py │ │ ├── activations.py │ │ ├── config.py │ │ ├── flatten.py │ │ ├── functional.py │ │ ├── init.py │ │ ├── linear.py │ │ ├── module.py │ │ ├── parameter.py │ │ └── sequential.py ├── multi_agents │ ├── __init__.py │ ├── jax │ │ ├── __init__.py │ │ ├── base.py │ │ ├── ippo │ │ │ ├── __init__.py │ │ │ ├── ippo.py │ │ │ └── ippo_cfg.py │ │ └── mappo │ │ │ ├── __init__.py │ │ │ ├── mappo.py │ │ │ └── mappo_cfg.py │ └── torch │ │ ├── __init__.py │ │ ├── base.py │ │ ├── ippo │ │ ├── __init__.py │ │ ├── ippo.py │ │ └── ippo_cfg.py │ │ └── mappo │ │ ├── __init__.py │ │ ├── mappo.py │ │ └── mappo_cfg.py ├── resources │ ├── __init__.py │ ├── noises │ │ ├── __init__.py │ │ ├── jax │ │ │ ├── __init__.py │ │ │ ├── base.py │ │ │ ├── gaussian.py │ │ │ └── ornstein_uhlenbeck.py │ │ ├── torch │ │ │ ├── __init__.py │ │ │ ├── base.py │ │ │ ├── gaussian.py │ │ │ └── ornstein_uhlenbeck.py │ │ └── warp │ │ │ ├── __init__.py │ │ │ ├── base.py │ │ │ ├── gaussian.py │ │ │ └── ornstein_uhlenbeck.py │ ├── optimizers │ │ ├── __init__.py │ │ ├── jax │ │ │ ├── __init__.py │ │ │ └── adam.py │ │ └── warp │ │ │ ├── __init__.py │ │ │ └── adam.py │ ├── preprocessors │ │ ├── __init__.py │ │ ├── jax │ │ │ ├── __init__.py │ │ │ └── running_standard_scaler.py │ │ ├── torch │ │ │ ├── __init__.py │ │ │ └── running_standard_scaler.py │ │ └── warp │ │ │ ├── __init__.py │ │ │ └── running_standard_scaler.py │ └── schedulers │ │ ├── __init__.py │ │ ├── jax │ │ ├── __init__.py │ │ └── kl_adaptive.py │ │ ├── torch │ │ ├── __init__.py │ │ └── kl_adaptive.py │ │ └── warp │ │ ├── __init__.py │ │ └── kl_adaptive.py ├── trainers │ ├── __init__.py │ ├── jax │ │ ├── __init__.py │ │ ├── base.py │ │ ├── sequential.py │ │ └── step.py │ ├── torch │ │ ├── __init__.py │ │ ├── base.py │ │ ├── parallel.py │ │ ├── sequential.py │ │ └── step.py │ └── warp │ │ ├── __init__.py │ │ ├── base.py │ │ └── sequential.py └── utils │ ├── __init__.py │ ├── distributed │ ├── __init__.py │ └── jax │ │ ├── __main__.py │ │ └── launcher.py │ ├── framework │ ├── __init__.py │ └── warp │ │ ├── __init__.py │ │ ├── graph.py │ │ ├── math.py │ │ └── ops.py │ ├── huggingface.py │ ├── model_instantiators │ ├── __init__.py │ ├── jax │ │ ├── __init__.py │ │ ├── categorical.py │ │ ├── common.py │ │ ├── deterministic.py │ │ ├── gaussian.py │ │ └── multicategorical.py │ ├── torch │ │ ├── __init__.py │ │ ├── categorical.py │ │ ├── common.py │ │ ├── deterministic.py │ │ ├── gaussian.py │ │ ├── multicategorical.py │ │ ├── multivariate_gaussian.py │ │ ├── shared.py │ │ └── tabular.py │ └── warp │ │ ├── __init__.py │ │ ├── common.py │ │ ├── deterministic.py │ │ ├── gaussian.py │ │ └── shared.py │ ├── postprocessing.py │ ├── runner │ ├── __init__.py │ ├── jax │ │ ├── __init__.py │ │ └── runner.py │ ├── torch │ │ ├── __init__.py │ │ └── runner.py │ └── warp │ │ ├── __init__.py │ │ └── runner.py │ ├── spaces │ ├── __init__.py │ ├── jax │ │ ├── __init__.py │ │ └── spaces.py │ ├── torch │ │ ├── __init__.py │ │ └── spaces.py │ └── warp │ │ ├── __init__.py │ │ └── spaces.py │ └── tensorboard.py └── tests ├── __init__.py ├── agents ├── __init__.py ├── jax │ ├── __init__.py │ ├── test_a2c.py │ ├── test_cem.py │ ├── test_ddpg.py │ ├── test_ddqn.py │ ├── test_dqn.py │ ├── test_ppo.py │ ├── test_rpo.py │ ├── test_sac.py │ └── test_td3.py ├── torch │ ├── __init__.py │ ├── test_a2c.py │ ├── test_amp.py │ ├── test_cem.py │ ├── test_ddpg.py │ ├── test_ddqn.py │ ├── test_dqn.py │ ├── test_ppo.py │ ├── test_q_learning.py │ ├── test_rpo.py │ ├── test_sac.py │ ├── test_sarsa.py │ ├── test_td3.py │ └── test_trpo.py └── warp │ ├── __init__.py │ ├── test_ddpg.py │ ├── test_ppo.py │ └── test_sac.py ├── envs ├── __init__.py └── wrappers │ ├── __init__.py │ ├── jax │ ├── __init__.py │ ├── test_brax_envs.py │ ├── test_gym_envs.py │ ├── test_gymnasium_envs.py │ ├── test_isaaclab_envs.py │ └── test_pettingzoo_envs.py │ ├── torch │ ├── __init__.py │ ├── test_brax_envs.py │ ├── test_deepmind_envs.py │ ├── test_gym_envs.py │ ├── test_gymnasium_envs.py │ ├── test_isaaclab_envs.py │ └── test_pettingzoo_envs.py │ └── warp │ ├── __init__.py │ ├── test_gymnasium_envs.py │ └── test_isaaclab_envs.py ├── memories ├── __init__.py └── torch │ ├── __init__.py │ └── test_base.py ├── multi_agents ├── __init__.py ├── jax │ ├── __init__.py │ ├── test_ippo.py │ └── test_mappo.py └── torch │ ├── __init__.py │ ├── test_ippo.py │ └── test_mappo.py ├── strategies.py ├── test_jax_config.py ├── test_torch_config.py ├── test_warp_config.py ├── trainers ├── __init__.py ├── jax │ ├── __init__.py │ ├── test_sequential.py │ └── test_step.py ├── torch │ ├── __init__.py │ ├── test_parallel.py │ ├── test_sequential.py │ └── test_step.py └── warp │ ├── __init__.py │ └── test_sequential.py ├── utilities.py └── utils ├── __init__.py ├── framework ├── __init__.py └── warp │ ├── __init__.py │ └── test_math.py ├── model_instantiators ├── __init__.py ├── jax │ ├── __init__.py │ ├── test_definition.py │ └── test_models.py ├── torch │ ├── __init__.py │ ├── test_definition.py │ └── test_models.py └── warp │ ├── __init__.py │ ├── test_definition.py │ └── test_models.py └── spaces ├── __init__.py ├── jax ├── __init__.py └── test_spaces.py ├── torch ├── __init__.py └── test_spaces.py └── warp ├── __init__.py └── test_spaces.py /.github/GITHUB_ACTIONS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/.github/GITHUB_ACTIONS.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/.github/ISSUE_TEMPLATE/bug_report.yaml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/workflows/pre-commit.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/.github/workflows/pre-commit.yml -------------------------------------------------------------------------------- /.github/workflows/python-publish-manual.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/.github/workflows/python-publish-manual.yml -------------------------------------------------------------------------------- /.github/workflows/tests-jax.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/.github/workflows/tests-jax.yml -------------------------------------------------------------------------------- /.github/workflows/tests-torch.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/.github/workflows/tests-torch.yml -------------------------------------------------------------------------------- /.github/workflows/tests-warp.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/.github/workflows/tests-warp.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.readthedocs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/.readthedocs.yaml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/README.md -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/docs/requirements.txt -------------------------------------------------------------------------------- /docs/source/404.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/docs/source/404.rst -------------------------------------------------------------------------------- /docs/source/_static/css/s5defs-roles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/docs/source/_static/css/s5defs-roles.css -------------------------------------------------------------------------------- /docs/source/_static/css/skrl.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/docs/source/_static/css/skrl.css -------------------------------------------------------------------------------- /docs/source/_static/data/404-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/docs/source/_static/data/404-dark.svg -------------------------------------------------------------------------------- /docs/source/_static/data/404-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/docs/source/_static/data/404-light.svg -------------------------------------------------------------------------------- /docs/source/_static/data/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/docs/source/_static/data/favicon.ico -------------------------------------------------------------------------------- /docs/source/_static/data/logo-dark-mode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/docs/source/_static/data/logo-dark-mode.png -------------------------------------------------------------------------------- /docs/source/_static/data/logo-jax.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/docs/source/_static/data/logo-jax.svg -------------------------------------------------------------------------------- /docs/source/_static/data/logo-light-mode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/docs/source/_static/data/logo-light-mode.png -------------------------------------------------------------------------------- /docs/source/_static/data/logo-torch.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/docs/source/_static/data/logo-torch.svg -------------------------------------------------------------------------------- /docs/source/_static/data/logo-warp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/docs/source/_static/data/logo-warp.svg -------------------------------------------------------------------------------- /docs/source/_static/data/skrl-up-transparent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/docs/source/_static/data/skrl-up-transparent.png -------------------------------------------------------------------------------- /docs/source/_static/data/skrl-up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/docs/source/_static/data/skrl-up.png -------------------------------------------------------------------------------- /docs/source/_static/imgs/data_tensorboard.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/docs/source/_static/imgs/data_tensorboard.jpg -------------------------------------------------------------------------------- /docs/source/_static/imgs/example_bidexhands.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/docs/source/_static/imgs/example_bidexhands.png -------------------------------------------------------------------------------- /docs/source/_static/imgs/example_deepmind.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/docs/source/_static/imgs/example_deepmind.png -------------------------------------------------------------------------------- /docs/source/_static/imgs/example_gym.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/docs/source/_static/imgs/example_gym.png -------------------------------------------------------------------------------- /docs/source/_static/imgs/example_isaacgym.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/docs/source/_static/imgs/example_isaacgym.png -------------------------------------------------------------------------------- /docs/source/_static/imgs/example_isaaclab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/docs/source/_static/imgs/example_isaaclab.png -------------------------------------------------------------------------------- /docs/source/_static/imgs/example_parallel.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/docs/source/_static/imgs/example_parallel.jpg -------------------------------------------------------------------------------- /docs/source/_static/imgs/example_shimmy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/docs/source/_static/imgs/example_shimmy.png -------------------------------------------------------------------------------- /docs/source/_static/imgs/manual_trainer-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/docs/source/_static/imgs/manual_trainer-dark.svg -------------------------------------------------------------------------------- /docs/source/_static/imgs/manual_trainer-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/docs/source/_static/imgs/manual_trainer-light.svg -------------------------------------------------------------------------------- /docs/source/_static/imgs/model_categorical-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/docs/source/_static/imgs/model_categorical-dark.svg -------------------------------------------------------------------------------- /docs/source/_static/imgs/model_categorical-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/docs/source/_static/imgs/model_categorical-light.svg -------------------------------------------------------------------------------- /docs/source/_static/imgs/model_categorical_cnn-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/docs/source/_static/imgs/model_categorical_cnn-dark.svg -------------------------------------------------------------------------------- /docs/source/_static/imgs/model_categorical_cnn-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/docs/source/_static/imgs/model_categorical_cnn-light.svg -------------------------------------------------------------------------------- /docs/source/_static/imgs/model_categorical_mlp-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/docs/source/_static/imgs/model_categorical_mlp-dark.svg -------------------------------------------------------------------------------- /docs/source/_static/imgs/model_categorical_mlp-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/docs/source/_static/imgs/model_categorical_mlp-light.svg -------------------------------------------------------------------------------- /docs/source/_static/imgs/model_categorical_rnn-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/docs/source/_static/imgs/model_categorical_rnn-dark.svg -------------------------------------------------------------------------------- /docs/source/_static/imgs/model_categorical_rnn-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/docs/source/_static/imgs/model_categorical_rnn-light.svg -------------------------------------------------------------------------------- /docs/source/_static/imgs/model_deterministic-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/docs/source/_static/imgs/model_deterministic-dark.svg -------------------------------------------------------------------------------- /docs/source/_static/imgs/model_deterministic-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/docs/source/_static/imgs/model_deterministic-light.svg -------------------------------------------------------------------------------- /docs/source/_static/imgs/model_deterministic_cnn-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/docs/source/_static/imgs/model_deterministic_cnn-dark.svg -------------------------------------------------------------------------------- /docs/source/_static/imgs/model_deterministic_cnn-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/docs/source/_static/imgs/model_deterministic_cnn-light.svg -------------------------------------------------------------------------------- /docs/source/_static/imgs/model_deterministic_mlp-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/docs/source/_static/imgs/model_deterministic_mlp-dark.svg -------------------------------------------------------------------------------- /docs/source/_static/imgs/model_deterministic_mlp-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/docs/source/_static/imgs/model_deterministic_mlp-light.svg -------------------------------------------------------------------------------- /docs/source/_static/imgs/model_deterministic_rnn-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/docs/source/_static/imgs/model_deterministic_rnn-dark.svg -------------------------------------------------------------------------------- /docs/source/_static/imgs/model_deterministic_rnn-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/docs/source/_static/imgs/model_deterministic_rnn-light.svg -------------------------------------------------------------------------------- /docs/source/_static/imgs/model_gaussian-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/docs/source/_static/imgs/model_gaussian-dark.svg -------------------------------------------------------------------------------- /docs/source/_static/imgs/model_gaussian-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/docs/source/_static/imgs/model_gaussian-light.svg -------------------------------------------------------------------------------- /docs/source/_static/imgs/model_gaussian_cnn-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/docs/source/_static/imgs/model_gaussian_cnn-dark.svg -------------------------------------------------------------------------------- /docs/source/_static/imgs/model_gaussian_cnn-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/docs/source/_static/imgs/model_gaussian_cnn-light.svg -------------------------------------------------------------------------------- /docs/source/_static/imgs/model_gaussian_mlp-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/docs/source/_static/imgs/model_gaussian_mlp-dark.svg -------------------------------------------------------------------------------- /docs/source/_static/imgs/model_gaussian_mlp-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/docs/source/_static/imgs/model_gaussian_mlp-light.svg -------------------------------------------------------------------------------- /docs/source/_static/imgs/model_gaussian_rnn-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/docs/source/_static/imgs/model_gaussian_rnn-dark.svg -------------------------------------------------------------------------------- /docs/source/_static/imgs/model_gaussian_rnn-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/docs/source/_static/imgs/model_gaussian_rnn-light.svg -------------------------------------------------------------------------------- /docs/source/_static/imgs/model_multicategorical-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/docs/source/_static/imgs/model_multicategorical-dark.svg -------------------------------------------------------------------------------- /docs/source/_static/imgs/model_multicategorical-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/docs/source/_static/imgs/model_multicategorical-light.svg -------------------------------------------------------------------------------- /docs/source/_static/imgs/model_multivariate_gaussian-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/docs/source/_static/imgs/model_multivariate_gaussian-dark.svg -------------------------------------------------------------------------------- /docs/source/_static/imgs/model_multivariate_gaussian-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/docs/source/_static/imgs/model_multivariate_gaussian-light.svg -------------------------------------------------------------------------------- /docs/source/_static/imgs/multi_agent_wrapping-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/docs/source/_static/imgs/multi_agent_wrapping-dark.svg -------------------------------------------------------------------------------- /docs/source/_static/imgs/multi_agent_wrapping-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/docs/source/_static/imgs/multi_agent_wrapping-light.svg -------------------------------------------------------------------------------- /docs/source/_static/imgs/noise_gaussian.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/docs/source/_static/imgs/noise_gaussian.png -------------------------------------------------------------------------------- /docs/source/_static/imgs/noise_ornstein_uhlenbeck.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/docs/source/_static/imgs/noise_ornstein_uhlenbeck.png -------------------------------------------------------------------------------- /docs/source/_static/imgs/parallel_trainer-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/docs/source/_static/imgs/parallel_trainer-dark.svg -------------------------------------------------------------------------------- /docs/source/_static/imgs/parallel_trainer-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/docs/source/_static/imgs/parallel_trainer-light.svg -------------------------------------------------------------------------------- /docs/source/_static/imgs/rl_schema-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/docs/source/_static/imgs/rl_schema-dark.svg -------------------------------------------------------------------------------- /docs/source/_static/imgs/rl_schema-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/docs/source/_static/imgs/rl_schema-light.svg -------------------------------------------------------------------------------- /docs/source/_static/imgs/sequential_trainer-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/docs/source/_static/imgs/sequential_trainer-dark.svg -------------------------------------------------------------------------------- /docs/source/_static/imgs/sequential_trainer-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/docs/source/_static/imgs/sequential_trainer-light.svg -------------------------------------------------------------------------------- /docs/source/_static/imgs/utils_tensorboard_file_iterator.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/docs/source/_static/imgs/utils_tensorboard_file_iterator.svg -------------------------------------------------------------------------------- /docs/source/_static/imgs/wrapping-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/docs/source/_static/imgs/wrapping-dark.svg -------------------------------------------------------------------------------- /docs/source/_static/imgs/wrapping-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/docs/source/_static/imgs/wrapping-light.svg -------------------------------------------------------------------------------- /docs/source/api/agents.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/docs/source/api/agents.rst -------------------------------------------------------------------------------- /docs/source/api/agents/a2c.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/docs/source/api/agents/a2c.rst -------------------------------------------------------------------------------- /docs/source/api/agents/amp.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/docs/source/api/agents/amp.rst -------------------------------------------------------------------------------- /docs/source/api/agents/cem.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/docs/source/api/agents/cem.rst -------------------------------------------------------------------------------- /docs/source/api/agents/ddpg.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/docs/source/api/agents/ddpg.rst -------------------------------------------------------------------------------- /docs/source/api/agents/ddqn.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/docs/source/api/agents/ddqn.rst -------------------------------------------------------------------------------- /docs/source/api/agents/dqn.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/docs/source/api/agents/dqn.rst -------------------------------------------------------------------------------- /docs/source/api/agents/ppo.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/docs/source/api/agents/ppo.rst -------------------------------------------------------------------------------- /docs/source/api/agents/q_learning.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/docs/source/api/agents/q_learning.rst -------------------------------------------------------------------------------- /docs/source/api/agents/rpo.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/docs/source/api/agents/rpo.rst -------------------------------------------------------------------------------- /docs/source/api/agents/sac.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/docs/source/api/agents/sac.rst -------------------------------------------------------------------------------- /docs/source/api/agents/sarsa.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/docs/source/api/agents/sarsa.rst -------------------------------------------------------------------------------- /docs/source/api/agents/td3.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/docs/source/api/agents/td3.rst -------------------------------------------------------------------------------- /docs/source/api/agents/trpo.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/docs/source/api/agents/trpo.rst -------------------------------------------------------------------------------- /docs/source/api/config/frameworks.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/docs/source/api/config/frameworks.rst -------------------------------------------------------------------------------- /docs/source/api/envs.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/docs/source/api/envs.rst -------------------------------------------------------------------------------- /docs/source/api/envs/isaaclab.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/docs/source/api/envs/isaaclab.rst -------------------------------------------------------------------------------- /docs/source/api/envs/multi_agents_wrapping.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/docs/source/api/envs/multi_agents_wrapping.rst -------------------------------------------------------------------------------- /docs/source/api/envs/wrapping.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/docs/source/api/envs/wrapping.rst -------------------------------------------------------------------------------- /docs/source/api/memories.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/docs/source/api/memories.rst -------------------------------------------------------------------------------- /docs/source/api/memories/random.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/docs/source/api/memories/random.rst -------------------------------------------------------------------------------- /docs/source/api/models.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/docs/source/api/models.rst -------------------------------------------------------------------------------- /docs/source/api/models/categorical.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/docs/source/api/models/categorical.rst -------------------------------------------------------------------------------- /docs/source/api/models/deterministic.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/docs/source/api/models/deterministic.rst -------------------------------------------------------------------------------- /docs/source/api/models/gaussian.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/docs/source/api/models/gaussian.rst -------------------------------------------------------------------------------- /docs/source/api/models/multicategorical.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/docs/source/api/models/multicategorical.rst -------------------------------------------------------------------------------- /docs/source/api/models/multivariate_gaussian.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/docs/source/api/models/multivariate_gaussian.rst -------------------------------------------------------------------------------- /docs/source/api/models/shared_model.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/docs/source/api/models/shared_model.rst -------------------------------------------------------------------------------- /docs/source/api/models/tabular.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/docs/source/api/models/tabular.rst -------------------------------------------------------------------------------- /docs/source/api/multi_agents.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/docs/source/api/multi_agents.rst -------------------------------------------------------------------------------- /docs/source/api/multi_agents/ippo.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/docs/source/api/multi_agents/ippo.rst -------------------------------------------------------------------------------- /docs/source/api/multi_agents/mappo.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/docs/source/api/multi_agents/mappo.rst -------------------------------------------------------------------------------- /docs/source/api/resources.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/docs/source/api/resources.rst -------------------------------------------------------------------------------- /docs/source/api/resources/noises.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/docs/source/api/resources/noises.rst -------------------------------------------------------------------------------- /docs/source/api/resources/noises/gaussian.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/docs/source/api/resources/noises/gaussian.rst -------------------------------------------------------------------------------- /docs/source/api/resources/noises/ornstein_uhlenbeck.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/docs/source/api/resources/noises/ornstein_uhlenbeck.rst -------------------------------------------------------------------------------- /docs/source/api/resources/optimizers.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/docs/source/api/resources/optimizers.rst -------------------------------------------------------------------------------- /docs/source/api/resources/optimizers/adam.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/docs/source/api/resources/optimizers/adam.rst -------------------------------------------------------------------------------- /docs/source/api/resources/preprocessors.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/docs/source/api/resources/preprocessors.rst -------------------------------------------------------------------------------- /docs/source/api/resources/preprocessors/running_standard_scaler.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/docs/source/api/resources/preprocessors/running_standard_scaler.rst -------------------------------------------------------------------------------- /docs/source/api/resources/schedulers.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/docs/source/api/resources/schedulers.rst -------------------------------------------------------------------------------- /docs/source/api/resources/schedulers/kl_adaptive.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/docs/source/api/resources/schedulers/kl_adaptive.rst -------------------------------------------------------------------------------- /docs/source/api/trainers.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/docs/source/api/trainers.rst -------------------------------------------------------------------------------- /docs/source/api/trainers/parallel.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/docs/source/api/trainers/parallel.rst -------------------------------------------------------------------------------- /docs/source/api/trainers/sequential.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/docs/source/api/trainers/sequential.rst -------------------------------------------------------------------------------- /docs/source/api/trainers/step.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/docs/source/api/trainers/step.rst -------------------------------------------------------------------------------- /docs/source/api/utils.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/docs/source/api/utils.rst -------------------------------------------------------------------------------- /docs/source/api/utils/distributed.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/docs/source/api/utils/distributed.rst -------------------------------------------------------------------------------- /docs/source/api/utils/huggingface.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/docs/source/api/utils/huggingface.rst -------------------------------------------------------------------------------- /docs/source/api/utils/model_instantiators.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/docs/source/api/utils/model_instantiators.rst -------------------------------------------------------------------------------- /docs/source/api/utils/postprocessing.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/docs/source/api/utils/postprocessing.rst -------------------------------------------------------------------------------- /docs/source/api/utils/runner.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/docs/source/api/utils/runner.rst -------------------------------------------------------------------------------- /docs/source/api/utils/seed.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/docs/source/api/utils/seed.rst -------------------------------------------------------------------------------- /docs/source/api/utils/spaces.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/docs/source/api/utils/spaces.rst -------------------------------------------------------------------------------- /docs/source/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/docs/source/conf.py -------------------------------------------------------------------------------- /docs/source/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/docs/source/index.rst -------------------------------------------------------------------------------- /docs/source/intro/data.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/docs/source/intro/data.rst -------------------------------------------------------------------------------- /docs/source/intro/examples.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/docs/source/intro/examples.rst -------------------------------------------------------------------------------- /docs/source/intro/getting_started.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/docs/source/intro/getting_started.rst -------------------------------------------------------------------------------- /docs/source/intro/installation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/docs/source/intro/installation.rst -------------------------------------------------------------------------------- /docs/source/snippets/agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/docs/source/snippets/agent.py -------------------------------------------------------------------------------- /docs/source/snippets/agents_basic_usage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/docs/source/snippets/agents_basic_usage.py -------------------------------------------------------------------------------- /docs/source/snippets/categorical_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/docs/source/snippets/categorical_model.py -------------------------------------------------------------------------------- /docs/source/snippets/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/docs/source/snippets/data.py -------------------------------------------------------------------------------- /docs/source/snippets/deterministic_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/docs/source/snippets/deterministic_model.py -------------------------------------------------------------------------------- /docs/source/snippets/gaussian_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/docs/source/snippets/gaussian_model.py -------------------------------------------------------------------------------- /docs/source/snippets/loaders.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/docs/source/snippets/loaders.py -------------------------------------------------------------------------------- /docs/source/snippets/memories.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/docs/source/snippets/memories.py -------------------------------------------------------------------------------- /docs/source/snippets/model_instantiators.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/docs/source/snippets/model_instantiators.txt -------------------------------------------------------------------------------- /docs/source/snippets/model_mixin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/docs/source/snippets/model_mixin.py -------------------------------------------------------------------------------- /docs/source/snippets/multi_agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/docs/source/snippets/multi_agent.py -------------------------------------------------------------------------------- /docs/source/snippets/multi_agents_basic_usage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/docs/source/snippets/multi_agents_basic_usage.py -------------------------------------------------------------------------------- /docs/source/snippets/multicategorical_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/docs/source/snippets/multicategorical_model.py -------------------------------------------------------------------------------- /docs/source/snippets/multivariate_gaussian_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/docs/source/snippets/multivariate_gaussian_model.py -------------------------------------------------------------------------------- /docs/source/snippets/noises.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/docs/source/snippets/noises.py -------------------------------------------------------------------------------- /docs/source/snippets/runner.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/docs/source/snippets/runner.txt -------------------------------------------------------------------------------- /docs/source/snippets/shared_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/docs/source/snippets/shared_model.py -------------------------------------------------------------------------------- /docs/source/snippets/tabular_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/docs/source/snippets/tabular_model.py -------------------------------------------------------------------------------- /docs/source/snippets/trainer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/docs/source/snippets/trainer.py -------------------------------------------------------------------------------- /docs/source/snippets/utils_distributed.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/docs/source/snippets/utils_distributed.txt -------------------------------------------------------------------------------- /docs/source/snippets/utils_postprocessing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/docs/source/snippets/utils_postprocessing.py -------------------------------------------------------------------------------- /docs/source/snippets/wrapping.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/docs/source/snippets/wrapping.py -------------------------------------------------------------------------------- /examples/brax/jax_brax_inverted_pendulum_ppo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/examples/brax/jax_brax_inverted_pendulum_ppo.py -------------------------------------------------------------------------------- /examples/brax/torch_brax_inverted_pendulum_ppo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/examples/brax/torch_brax_inverted_pendulum_ppo.py -------------------------------------------------------------------------------- /examples/deepmind/torch_dm_cartpole_swingup_ddpg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/examples/deepmind/torch_dm_cartpole_swingup_ddpg.py -------------------------------------------------------------------------------- /examples/deepmind/torch_dm_manipulation_stack_sac.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/examples/deepmind/torch_dm_manipulation_stack_sac.py -------------------------------------------------------------------------------- /examples/gym/jax_gym_cartpole_cem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/examples/gym/jax_gym_cartpole_cem.py -------------------------------------------------------------------------------- /examples/gym/jax_gym_cartpole_dqn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/examples/gym/jax_gym_cartpole_dqn.py -------------------------------------------------------------------------------- /examples/gym/jax_gym_pendulum_ddpg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/examples/gym/jax_gym_pendulum_ddpg.py -------------------------------------------------------------------------------- /examples/gym/jax_gym_pendulum_ppo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/examples/gym/jax_gym_pendulum_ppo.py -------------------------------------------------------------------------------- /examples/gym/jax_gym_pendulum_sac.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/examples/gym/jax_gym_pendulum_sac.py -------------------------------------------------------------------------------- /examples/gym/jax_gym_pendulum_td3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/examples/gym/jax_gym_pendulum_td3.py -------------------------------------------------------------------------------- /examples/gym/torch_gym_cartpole_cem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/examples/gym/torch_gym_cartpole_cem.py -------------------------------------------------------------------------------- /examples/gym/torch_gym_cartpole_dqn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/examples/gym/torch_gym_cartpole_dqn.py -------------------------------------------------------------------------------- /examples/gym/torch_gym_frozen_lake_q_learning.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/examples/gym/torch_gym_frozen_lake_q_learning.py -------------------------------------------------------------------------------- /examples/gym/torch_gym_pendulum_ddpg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/examples/gym/torch_gym_pendulum_ddpg.py -------------------------------------------------------------------------------- /examples/gym/torch_gym_pendulum_ddpg_td3_sac_parallel_unshared_memory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/examples/gym/torch_gym_pendulum_ddpg_td3_sac_parallel_unshared_memory.py -------------------------------------------------------------------------------- /examples/gym/torch_gym_pendulum_ddpg_td3_sac_sequential_shared_memory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/examples/gym/torch_gym_pendulum_ddpg_td3_sac_sequential_shared_memory.py -------------------------------------------------------------------------------- /examples/gym/torch_gym_pendulum_ddpg_td3_sac_sequential_unshared_memory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/examples/gym/torch_gym_pendulum_ddpg_td3_sac_sequential_unshared_memory.py -------------------------------------------------------------------------------- /examples/gym/torch_gym_pendulum_ppo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/examples/gym/torch_gym_pendulum_ppo.py -------------------------------------------------------------------------------- /examples/gym/torch_gym_pendulum_sac.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/examples/gym/torch_gym_pendulum_sac.py -------------------------------------------------------------------------------- /examples/gym/torch_gym_pendulum_td3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/examples/gym/torch_gym_pendulum_td3.py -------------------------------------------------------------------------------- /examples/gym/torch_gym_pendulum_trpo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/examples/gym/torch_gym_pendulum_trpo.py -------------------------------------------------------------------------------- /examples/gym/torch_gym_pendulumnovel_ddpg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/examples/gym/torch_gym_pendulumnovel_ddpg.py -------------------------------------------------------------------------------- /examples/gym/torch_gym_pendulumnovel_ddpg_gru.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/examples/gym/torch_gym_pendulumnovel_ddpg_gru.py -------------------------------------------------------------------------------- /examples/gym/torch_gym_pendulumnovel_ddpg_lstm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/examples/gym/torch_gym_pendulumnovel_ddpg_lstm.py -------------------------------------------------------------------------------- /examples/gym/torch_gym_pendulumnovel_ddpg_rnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/examples/gym/torch_gym_pendulumnovel_ddpg_rnn.py -------------------------------------------------------------------------------- /examples/gym/torch_gym_pendulumnovel_ppo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/examples/gym/torch_gym_pendulumnovel_ppo.py -------------------------------------------------------------------------------- /examples/gym/torch_gym_pendulumnovel_ppo_gru.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/examples/gym/torch_gym_pendulumnovel_ppo_gru.py -------------------------------------------------------------------------------- /examples/gym/torch_gym_pendulumnovel_ppo_lstm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/examples/gym/torch_gym_pendulumnovel_ppo_lstm.py -------------------------------------------------------------------------------- /examples/gym/torch_gym_pendulumnovel_ppo_rnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/examples/gym/torch_gym_pendulumnovel_ppo_rnn.py -------------------------------------------------------------------------------- /examples/gym/torch_gym_pendulumnovel_sac.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/examples/gym/torch_gym_pendulumnovel_sac.py -------------------------------------------------------------------------------- /examples/gym/torch_gym_pendulumnovel_sac_gru.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/examples/gym/torch_gym_pendulumnovel_sac_gru.py -------------------------------------------------------------------------------- /examples/gym/torch_gym_pendulumnovel_sac_lstm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/examples/gym/torch_gym_pendulumnovel_sac_lstm.py -------------------------------------------------------------------------------- /examples/gym/torch_gym_pendulumnovel_sac_rnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/examples/gym/torch_gym_pendulumnovel_sac_rnn.py -------------------------------------------------------------------------------- /examples/gym/torch_gym_pendulumnovel_td3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/examples/gym/torch_gym_pendulumnovel_td3.py -------------------------------------------------------------------------------- /examples/gym/torch_gym_pendulumnovel_td3_gru.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/examples/gym/torch_gym_pendulumnovel_td3_gru.py -------------------------------------------------------------------------------- /examples/gym/torch_gym_pendulumnovel_td3_lstm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/examples/gym/torch_gym_pendulumnovel_td3_lstm.py -------------------------------------------------------------------------------- /examples/gym/torch_gym_pendulumnovel_td3_rnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/examples/gym/torch_gym_pendulumnovel_td3_rnn.py -------------------------------------------------------------------------------- /examples/gym/torch_gym_pendulumnovel_trpo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/examples/gym/torch_gym_pendulumnovel_trpo.py -------------------------------------------------------------------------------- /examples/gym/torch_gym_pendulumnovel_trpo_gru.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/examples/gym/torch_gym_pendulumnovel_trpo_gru.py -------------------------------------------------------------------------------- /examples/gym/torch_gym_pendulumnovel_trpo_lstm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/examples/gym/torch_gym_pendulumnovel_trpo_lstm.py -------------------------------------------------------------------------------- /examples/gym/torch_gym_pendulumnovel_trpo_rnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/examples/gym/torch_gym_pendulumnovel_trpo_rnn.py -------------------------------------------------------------------------------- /examples/gym/torch_gym_taxi_sarsa.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/examples/gym/torch_gym_taxi_sarsa.py -------------------------------------------------------------------------------- /examples/gymnasium/jax_gymnasium_cartpole_cem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/examples/gymnasium/jax_gymnasium_cartpole_cem.py -------------------------------------------------------------------------------- /examples/gymnasium/jax_gymnasium_cartpole_dqn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/examples/gymnasium/jax_gymnasium_cartpole_dqn.py -------------------------------------------------------------------------------- /examples/gymnasium/jax_gymnasium_pendulum_ddpg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/examples/gymnasium/jax_gymnasium_pendulum_ddpg.py -------------------------------------------------------------------------------- /examples/gymnasium/jax_gymnasium_pendulum_ppo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/examples/gymnasium/jax_gymnasium_pendulum_ppo.py -------------------------------------------------------------------------------- /examples/gymnasium/jax_gymnasium_pendulum_sac.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/examples/gymnasium/jax_gymnasium_pendulum_sac.py -------------------------------------------------------------------------------- /examples/gymnasium/jax_gymnasium_pendulum_td3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/examples/gymnasium/jax_gymnasium_pendulum_td3.py -------------------------------------------------------------------------------- /examples/gymnasium/torch_gymnasium_cartpole_cem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/examples/gymnasium/torch_gymnasium_cartpole_cem.py -------------------------------------------------------------------------------- /examples/gymnasium/torch_gymnasium_cartpole_dqn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/examples/gymnasium/torch_gymnasium_cartpole_dqn.py -------------------------------------------------------------------------------- /examples/gymnasium/torch_gymnasium_frozen_lake_q_learning.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/examples/gymnasium/torch_gymnasium_frozen_lake_q_learning.py -------------------------------------------------------------------------------- /examples/gymnasium/torch_gymnasium_pendulum_ddpg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/examples/gymnasium/torch_gymnasium_pendulum_ddpg.py -------------------------------------------------------------------------------- /examples/gymnasium/torch_gymnasium_pendulum_ddpg_td3_sac_parallel_unshared_memory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/examples/gymnasium/torch_gymnasium_pendulum_ddpg_td3_sac_parallel_unshared_memory.py -------------------------------------------------------------------------------- /examples/gymnasium/torch_gymnasium_pendulum_ddpg_td3_sac_sequential_shared_memory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/examples/gymnasium/torch_gymnasium_pendulum_ddpg_td3_sac_sequential_shared_memory.py -------------------------------------------------------------------------------- /examples/gymnasium/torch_gymnasium_pendulum_ddpg_td3_sac_sequential_unshared_memory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/examples/gymnasium/torch_gymnasium_pendulum_ddpg_td3_sac_sequential_unshared_memory.py -------------------------------------------------------------------------------- /examples/gymnasium/torch_gymnasium_pendulum_ppo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/examples/gymnasium/torch_gymnasium_pendulum_ppo.py -------------------------------------------------------------------------------- /examples/gymnasium/torch_gymnasium_pendulum_sac.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/examples/gymnasium/torch_gymnasium_pendulum_sac.py -------------------------------------------------------------------------------- /examples/gymnasium/torch_gymnasium_pendulum_td3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/examples/gymnasium/torch_gymnasium_pendulum_td3.py -------------------------------------------------------------------------------- /examples/gymnasium/torch_gymnasium_pendulum_trpo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/examples/gymnasium/torch_gymnasium_pendulum_trpo.py -------------------------------------------------------------------------------- /examples/gymnasium/torch_gymnasium_pendulumnovel_ddpg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/examples/gymnasium/torch_gymnasium_pendulumnovel_ddpg.py -------------------------------------------------------------------------------- /examples/gymnasium/torch_gymnasium_pendulumnovel_ddpg_gru.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/examples/gymnasium/torch_gymnasium_pendulumnovel_ddpg_gru.py -------------------------------------------------------------------------------- /examples/gymnasium/torch_gymnasium_pendulumnovel_ddpg_lstm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/examples/gymnasium/torch_gymnasium_pendulumnovel_ddpg_lstm.py -------------------------------------------------------------------------------- /examples/gymnasium/torch_gymnasium_pendulumnovel_ddpg_rnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/examples/gymnasium/torch_gymnasium_pendulumnovel_ddpg_rnn.py -------------------------------------------------------------------------------- /examples/gymnasium/torch_gymnasium_pendulumnovel_ppo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/examples/gymnasium/torch_gymnasium_pendulumnovel_ppo.py -------------------------------------------------------------------------------- /examples/gymnasium/torch_gymnasium_pendulumnovel_ppo_gru.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/examples/gymnasium/torch_gymnasium_pendulumnovel_ppo_gru.py -------------------------------------------------------------------------------- /examples/gymnasium/torch_gymnasium_pendulumnovel_ppo_lstm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/examples/gymnasium/torch_gymnasium_pendulumnovel_ppo_lstm.py -------------------------------------------------------------------------------- /examples/gymnasium/torch_gymnasium_pendulumnovel_ppo_rnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/examples/gymnasium/torch_gymnasium_pendulumnovel_ppo_rnn.py -------------------------------------------------------------------------------- /examples/gymnasium/torch_gymnasium_pendulumnovel_sac.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/examples/gymnasium/torch_gymnasium_pendulumnovel_sac.py -------------------------------------------------------------------------------- /examples/gymnasium/torch_gymnasium_pendulumnovel_sac_gru.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/examples/gymnasium/torch_gymnasium_pendulumnovel_sac_gru.py -------------------------------------------------------------------------------- /examples/gymnasium/torch_gymnasium_pendulumnovel_sac_lstm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/examples/gymnasium/torch_gymnasium_pendulumnovel_sac_lstm.py -------------------------------------------------------------------------------- /examples/gymnasium/torch_gymnasium_pendulumnovel_sac_rnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/examples/gymnasium/torch_gymnasium_pendulumnovel_sac_rnn.py -------------------------------------------------------------------------------- /examples/gymnasium/torch_gymnasium_pendulumnovel_td3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/examples/gymnasium/torch_gymnasium_pendulumnovel_td3.py -------------------------------------------------------------------------------- /examples/gymnasium/torch_gymnasium_pendulumnovel_td3_gru.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/examples/gymnasium/torch_gymnasium_pendulumnovel_td3_gru.py -------------------------------------------------------------------------------- /examples/gymnasium/torch_gymnasium_pendulumnovel_td3_lstm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/examples/gymnasium/torch_gymnasium_pendulumnovel_td3_lstm.py -------------------------------------------------------------------------------- /examples/gymnasium/torch_gymnasium_pendulumnovel_td3_rnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/examples/gymnasium/torch_gymnasium_pendulumnovel_td3_rnn.py -------------------------------------------------------------------------------- /examples/gymnasium/torch_gymnasium_pendulumnovel_trpo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/examples/gymnasium/torch_gymnasium_pendulumnovel_trpo.py -------------------------------------------------------------------------------- /examples/gymnasium/torch_gymnasium_pendulumnovel_trpo_gru.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/examples/gymnasium/torch_gymnasium_pendulumnovel_trpo_gru.py -------------------------------------------------------------------------------- /examples/gymnasium/torch_gymnasium_pendulumnovel_trpo_lstm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/examples/gymnasium/torch_gymnasium_pendulumnovel_trpo_lstm.py -------------------------------------------------------------------------------- /examples/gymnasium/torch_gymnasium_pendulumnovel_trpo_rnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/examples/gymnasium/torch_gymnasium_pendulumnovel_trpo_rnn.py -------------------------------------------------------------------------------- /examples/gymnasium/torch_gymnasium_taxi_sarsa.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/examples/gymnasium/torch_gymnasium_taxi_sarsa.py -------------------------------------------------------------------------------- /examples/gymnasium/warp_gymnasium_pendulum_ddpg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/examples/gymnasium/warp_gymnasium_pendulum_ddpg.py -------------------------------------------------------------------------------- /examples/gymnasium/warp_gymnasium_pendulum_ppo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/examples/gymnasium/warp_gymnasium_pendulum_ppo.py -------------------------------------------------------------------------------- /examples/gymnasium/warp_gymnasium_pendulum_sac.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/examples/gymnasium/warp_gymnasium_pendulum_sac.py -------------------------------------------------------------------------------- /examples/isaaclab/jax_ant_ddpg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/examples/isaaclab/jax_ant_ddpg.py -------------------------------------------------------------------------------- /examples/isaaclab/jax_ant_sac.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/examples/isaaclab/jax_ant_sac.py -------------------------------------------------------------------------------- /examples/isaaclab/jax_ant_td3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/examples/isaaclab/jax_ant_td3.py -------------------------------------------------------------------------------- /examples/isaaclab/torch_ant_ddpg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/examples/isaaclab/torch_ant_ddpg.py -------------------------------------------------------------------------------- /examples/isaaclab/torch_ant_sac.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/examples/isaaclab/torch_ant_sac.py -------------------------------------------------------------------------------- /examples/isaaclab/torch_ant_td3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/examples/isaaclab/torch_ant_td3.py -------------------------------------------------------------------------------- /examples/isaaclab/torch_cartpole_direct_box_box_ppo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/examples/isaaclab/torch_cartpole_direct_box_box_ppo.py -------------------------------------------------------------------------------- /examples/isaaclab/torch_cartpole_direct_box_discrete_ppo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/examples/isaaclab/torch_cartpole_direct_box_discrete_ppo.py -------------------------------------------------------------------------------- /examples/isaaclab/torch_cartpole_direct_box_multidiscrete_ppo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/examples/isaaclab/torch_cartpole_direct_box_multidiscrete_ppo.py -------------------------------------------------------------------------------- /examples/isaaclab/torch_cartpole_direct_dict_box_ppo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/examples/isaaclab/torch_cartpole_direct_dict_box_ppo.py -------------------------------------------------------------------------------- /examples/isaaclab/torch_cartpole_direct_dict_discrete_ppo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/examples/isaaclab/torch_cartpole_direct_dict_discrete_ppo.py -------------------------------------------------------------------------------- /examples/isaaclab/torch_cartpole_direct_dict_multidiscrete_ppo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/examples/isaaclab/torch_cartpole_direct_dict_multidiscrete_ppo.py -------------------------------------------------------------------------------- /examples/isaaclab/torch_cartpole_direct_discrete_box_ppo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/examples/isaaclab/torch_cartpole_direct_discrete_box_ppo.py -------------------------------------------------------------------------------- /examples/isaaclab/torch_cartpole_direct_discrete_discrete_ppo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/examples/isaaclab/torch_cartpole_direct_discrete_discrete_ppo.py -------------------------------------------------------------------------------- /examples/isaaclab/torch_cartpole_direct_discrete_multidiscrete_ppo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/examples/isaaclab/torch_cartpole_direct_discrete_multidiscrete_ppo.py -------------------------------------------------------------------------------- /examples/isaaclab/torch_cartpole_direct_multidiscrete_box_ppo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/examples/isaaclab/torch_cartpole_direct_multidiscrete_box_ppo.py -------------------------------------------------------------------------------- /examples/isaaclab/torch_cartpole_direct_multidiscrete_discrete_ppo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/examples/isaaclab/torch_cartpole_direct_multidiscrete_discrete_ppo.py -------------------------------------------------------------------------------- /examples/isaaclab/torch_cartpole_direct_multidiscrete_multidiscrete_ppo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/examples/isaaclab/torch_cartpole_direct_multidiscrete_multidiscrete_ppo.py -------------------------------------------------------------------------------- /examples/isaaclab/torch_cartpole_direct_tuple_box_ppo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/examples/isaaclab/torch_cartpole_direct_tuple_box_ppo.py -------------------------------------------------------------------------------- /examples/isaaclab/torch_cartpole_direct_tuple_discrete_ppo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/examples/isaaclab/torch_cartpole_direct_tuple_discrete_ppo.py -------------------------------------------------------------------------------- /examples/isaaclab/torch_cartpole_direct_tuple_multidiscrete_ppo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/examples/isaaclab/torch_cartpole_direct_tuple_multidiscrete_ppo.py -------------------------------------------------------------------------------- /examples/isaaclab/warp_ant_ddpg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/examples/isaaclab/warp_ant_ddpg.py -------------------------------------------------------------------------------- /examples/isaaclab/warp_ant_sac.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/examples/isaaclab/warp_ant_sac.py -------------------------------------------------------------------------------- /examples/isaaclab/warp_cartpole_direct_box_box_ppo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/examples/isaaclab/warp_cartpole_direct_box_box_ppo.py -------------------------------------------------------------------------------- /examples/real_world/franka_emika_panda/reaching_franka_isaacgym_env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/examples/real_world/franka_emika_panda/reaching_franka_isaacgym_env.py -------------------------------------------------------------------------------- /examples/real_world/franka_emika_panda/reaching_franka_isaacgym_skrl_eval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/examples/real_world/franka_emika_panda/reaching_franka_isaacgym_skrl_eval.py -------------------------------------------------------------------------------- /examples/real_world/franka_emika_panda/reaching_franka_isaacgym_skrl_train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/examples/real_world/franka_emika_panda/reaching_franka_isaacgym_skrl_train.py -------------------------------------------------------------------------------- /examples/real_world/franka_emika_panda/reaching_franka_omniverse_isaacgym_env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/examples/real_world/franka_emika_panda/reaching_franka_omniverse_isaacgym_env.py -------------------------------------------------------------------------------- /examples/real_world/franka_emika_panda/reaching_franka_omniverse_isaacgym_skrl_eval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/examples/real_world/franka_emika_panda/reaching_franka_omniverse_isaacgym_skrl_eval.py -------------------------------------------------------------------------------- /examples/real_world/franka_emika_panda/reaching_franka_omniverse_isaacgym_skrl_train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/examples/real_world/franka_emika_panda/reaching_franka_omniverse_isaacgym_skrl_train.py -------------------------------------------------------------------------------- /examples/real_world/franka_emika_panda/reaching_franka_real_env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/examples/real_world/franka_emika_panda/reaching_franka_real_env.py -------------------------------------------------------------------------------- /examples/real_world/franka_emika_panda/reaching_franka_real_skrl_eval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/examples/real_world/franka_emika_panda/reaching_franka_real_skrl_eval.py -------------------------------------------------------------------------------- /examples/real_world/kuka_lbr_iiwa/reaching_iiwa_omniverse_isaacgym_env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/examples/real_world/kuka_lbr_iiwa/reaching_iiwa_omniverse_isaacgym_env.py -------------------------------------------------------------------------------- /examples/real_world/kuka_lbr_iiwa/reaching_iiwa_omniverse_isaacgym_skrl_eval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/examples/real_world/kuka_lbr_iiwa/reaching_iiwa_omniverse_isaacgym_skrl_eval.py -------------------------------------------------------------------------------- /examples/real_world/kuka_lbr_iiwa/reaching_iiwa_omniverse_isaacgym_skrl_train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/examples/real_world/kuka_lbr_iiwa/reaching_iiwa_omniverse_isaacgym_skrl_train.py -------------------------------------------------------------------------------- /examples/real_world/kuka_lbr_iiwa/reaching_iiwa_real_env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/examples/real_world/kuka_lbr_iiwa/reaching_iiwa_real_env.py -------------------------------------------------------------------------------- /examples/real_world/kuka_lbr_iiwa/reaching_iiwa_real_ros2_env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/examples/real_world/kuka_lbr_iiwa/reaching_iiwa_real_ros2_env.py -------------------------------------------------------------------------------- /examples/real_world/kuka_lbr_iiwa/reaching_iiwa_real_ros_env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/examples/real_world/kuka_lbr_iiwa/reaching_iiwa_real_ros_env.py -------------------------------------------------------------------------------- /examples/real_world/kuka_lbr_iiwa/reaching_iiwa_real_ros_ros2_skrl_eval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/examples/real_world/kuka_lbr_iiwa/reaching_iiwa_real_ros_ros2_skrl_eval.py -------------------------------------------------------------------------------- /examples/real_world/kuka_lbr_iiwa/reaching_iiwa_real_skrl_eval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/examples/real_world/kuka_lbr_iiwa/reaching_iiwa_real_skrl_eval.py -------------------------------------------------------------------------------- /examples/run.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/examples/run.bash -------------------------------------------------------------------------------- /examples/shimmy/jax_shimmy_atari_pong_dqn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/examples/shimmy/jax_shimmy_atari_pong_dqn.py -------------------------------------------------------------------------------- /examples/shimmy/jax_shimmy_dm_control_acrobot_swingup_sparse_sac.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/examples/shimmy/jax_shimmy_dm_control_acrobot_swingup_sparse_sac.py -------------------------------------------------------------------------------- /examples/shimmy/jax_shimmy_openai_gym_compatibility_pendulum_ddpg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/examples/shimmy/jax_shimmy_openai_gym_compatibility_pendulum_ddpg.py -------------------------------------------------------------------------------- /examples/shimmy/torch_shimmy_atari_pong_dqn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/examples/shimmy/torch_shimmy_atari_pong_dqn.py -------------------------------------------------------------------------------- /examples/shimmy/torch_shimmy_dm_control_acrobot_swingup_sparse_sac.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/examples/shimmy/torch_shimmy_dm_control_acrobot_swingup_sparse_sac.py -------------------------------------------------------------------------------- /examples/shimmy/torch_shimmy_openai_gym_compatibility_pendulum_ddpg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/examples/shimmy/torch_shimmy_openai_gym_compatibility_pendulum_ddpg.py -------------------------------------------------------------------------------- /examples/utils/tensorboard_file_iterator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/examples/utils/tensorboard_file_iterator.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/pyproject.toml -------------------------------------------------------------------------------- /skrl/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/skrl/__init__.py -------------------------------------------------------------------------------- /skrl/agents/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /skrl/agents/jax/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/skrl/agents/jax/__init__.py -------------------------------------------------------------------------------- /skrl/agents/jax/a2c/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/skrl/agents/jax/a2c/__init__.py -------------------------------------------------------------------------------- /skrl/agents/jax/a2c/a2c.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/skrl/agents/jax/a2c/a2c.py -------------------------------------------------------------------------------- /skrl/agents/jax/a2c/a2c_cfg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/skrl/agents/jax/a2c/a2c_cfg.py -------------------------------------------------------------------------------- /skrl/agents/jax/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/skrl/agents/jax/base.py -------------------------------------------------------------------------------- /skrl/agents/jax/cem/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/skrl/agents/jax/cem/__init__.py -------------------------------------------------------------------------------- /skrl/agents/jax/cem/cem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/skrl/agents/jax/cem/cem.py -------------------------------------------------------------------------------- /skrl/agents/jax/cem/cem_cfg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/skrl/agents/jax/cem/cem_cfg.py -------------------------------------------------------------------------------- /skrl/agents/jax/ddpg/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/skrl/agents/jax/ddpg/__init__.py -------------------------------------------------------------------------------- /skrl/agents/jax/ddpg/ddpg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/skrl/agents/jax/ddpg/ddpg.py -------------------------------------------------------------------------------- /skrl/agents/jax/ddpg/ddpg_cfg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/skrl/agents/jax/ddpg/ddpg_cfg.py -------------------------------------------------------------------------------- /skrl/agents/jax/ddqn/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/skrl/agents/jax/ddqn/__init__.py -------------------------------------------------------------------------------- /skrl/agents/jax/ddqn/ddqn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/skrl/agents/jax/ddqn/ddqn.py -------------------------------------------------------------------------------- /skrl/agents/jax/ddqn/ddqn_cfg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/skrl/agents/jax/ddqn/ddqn_cfg.py -------------------------------------------------------------------------------- /skrl/agents/jax/dqn/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/skrl/agents/jax/dqn/__init__.py -------------------------------------------------------------------------------- /skrl/agents/jax/dqn/dqn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/skrl/agents/jax/dqn/dqn.py -------------------------------------------------------------------------------- /skrl/agents/jax/dqn/dqn_cfg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/skrl/agents/jax/dqn/dqn_cfg.py -------------------------------------------------------------------------------- /skrl/agents/jax/ppo/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/skrl/agents/jax/ppo/__init__.py -------------------------------------------------------------------------------- /skrl/agents/jax/ppo/ppo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/skrl/agents/jax/ppo/ppo.py -------------------------------------------------------------------------------- /skrl/agents/jax/ppo/ppo_cfg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/skrl/agents/jax/ppo/ppo_cfg.py -------------------------------------------------------------------------------- /skrl/agents/jax/rpo/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/skrl/agents/jax/rpo/__init__.py -------------------------------------------------------------------------------- /skrl/agents/jax/rpo/rpo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/skrl/agents/jax/rpo/rpo.py -------------------------------------------------------------------------------- /skrl/agents/jax/rpo/rpo_cfg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/skrl/agents/jax/rpo/rpo_cfg.py -------------------------------------------------------------------------------- /skrl/agents/jax/sac/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/skrl/agents/jax/sac/__init__.py -------------------------------------------------------------------------------- /skrl/agents/jax/sac/sac.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/skrl/agents/jax/sac/sac.py -------------------------------------------------------------------------------- /skrl/agents/jax/sac/sac_cfg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/skrl/agents/jax/sac/sac_cfg.py -------------------------------------------------------------------------------- /skrl/agents/jax/td3/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/skrl/agents/jax/td3/__init__.py -------------------------------------------------------------------------------- /skrl/agents/jax/td3/td3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/skrl/agents/jax/td3/td3.py -------------------------------------------------------------------------------- /skrl/agents/jax/td3/td3_cfg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/skrl/agents/jax/td3/td3_cfg.py -------------------------------------------------------------------------------- /skrl/agents/torch/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/skrl/agents/torch/__init__.py -------------------------------------------------------------------------------- /skrl/agents/torch/a2c/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/skrl/agents/torch/a2c/__init__.py -------------------------------------------------------------------------------- /skrl/agents/torch/a2c/a2c.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/skrl/agents/torch/a2c/a2c.py -------------------------------------------------------------------------------- /skrl/agents/torch/a2c/a2c_cfg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/skrl/agents/torch/a2c/a2c_cfg.py -------------------------------------------------------------------------------- /skrl/agents/torch/a2c/a2c_rnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/skrl/agents/torch/a2c/a2c_rnn.py -------------------------------------------------------------------------------- /skrl/agents/torch/amp/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/skrl/agents/torch/amp/__init__.py -------------------------------------------------------------------------------- /skrl/agents/torch/amp/amp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/skrl/agents/torch/amp/amp.py -------------------------------------------------------------------------------- /skrl/agents/torch/amp/amp_cfg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/skrl/agents/torch/amp/amp_cfg.py -------------------------------------------------------------------------------- /skrl/agents/torch/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/skrl/agents/torch/base.py -------------------------------------------------------------------------------- /skrl/agents/torch/cem/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/skrl/agents/torch/cem/__init__.py -------------------------------------------------------------------------------- /skrl/agents/torch/cem/cem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/skrl/agents/torch/cem/cem.py -------------------------------------------------------------------------------- /skrl/agents/torch/cem/cem_cfg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/skrl/agents/torch/cem/cem_cfg.py -------------------------------------------------------------------------------- /skrl/agents/torch/ddpg/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/skrl/agents/torch/ddpg/__init__.py -------------------------------------------------------------------------------- /skrl/agents/torch/ddpg/ddpg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/skrl/agents/torch/ddpg/ddpg.py -------------------------------------------------------------------------------- /skrl/agents/torch/ddpg/ddpg_cfg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/skrl/agents/torch/ddpg/ddpg_cfg.py -------------------------------------------------------------------------------- /skrl/agents/torch/ddpg/ddpg_rnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/skrl/agents/torch/ddpg/ddpg_rnn.py -------------------------------------------------------------------------------- /skrl/agents/torch/ddqn/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/skrl/agents/torch/ddqn/__init__.py -------------------------------------------------------------------------------- /skrl/agents/torch/ddqn/ddqn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/skrl/agents/torch/ddqn/ddqn.py -------------------------------------------------------------------------------- /skrl/agents/torch/ddqn/ddqn_cfg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/skrl/agents/torch/ddqn/ddqn_cfg.py -------------------------------------------------------------------------------- /skrl/agents/torch/dqn/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/skrl/agents/torch/dqn/__init__.py -------------------------------------------------------------------------------- /skrl/agents/torch/dqn/dqn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/skrl/agents/torch/dqn/dqn.py -------------------------------------------------------------------------------- /skrl/agents/torch/dqn/dqn_cfg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/skrl/agents/torch/dqn/dqn_cfg.py -------------------------------------------------------------------------------- /skrl/agents/torch/ppo/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/skrl/agents/torch/ppo/__init__.py -------------------------------------------------------------------------------- /skrl/agents/torch/ppo/ppo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/skrl/agents/torch/ppo/ppo.py -------------------------------------------------------------------------------- /skrl/agents/torch/ppo/ppo_cfg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/skrl/agents/torch/ppo/ppo_cfg.py -------------------------------------------------------------------------------- /skrl/agents/torch/ppo/ppo_rnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/skrl/agents/torch/ppo/ppo_rnn.py -------------------------------------------------------------------------------- /skrl/agents/torch/q_learning/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/skrl/agents/torch/q_learning/__init__.py -------------------------------------------------------------------------------- /skrl/agents/torch/q_learning/q_learning.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/skrl/agents/torch/q_learning/q_learning.py -------------------------------------------------------------------------------- /skrl/agents/torch/q_learning/q_learning_cfg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/skrl/agents/torch/q_learning/q_learning_cfg.py -------------------------------------------------------------------------------- /skrl/agents/torch/rpo/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/skrl/agents/torch/rpo/__init__.py -------------------------------------------------------------------------------- /skrl/agents/torch/rpo/rpo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/skrl/agents/torch/rpo/rpo.py -------------------------------------------------------------------------------- /skrl/agents/torch/rpo/rpo_cfg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/skrl/agents/torch/rpo/rpo_cfg.py -------------------------------------------------------------------------------- /skrl/agents/torch/rpo/rpo_rnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/skrl/agents/torch/rpo/rpo_rnn.py -------------------------------------------------------------------------------- /skrl/agents/torch/sac/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/skrl/agents/torch/sac/__init__.py -------------------------------------------------------------------------------- /skrl/agents/torch/sac/sac.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/skrl/agents/torch/sac/sac.py -------------------------------------------------------------------------------- /skrl/agents/torch/sac/sac_cfg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/skrl/agents/torch/sac/sac_cfg.py -------------------------------------------------------------------------------- /skrl/agents/torch/sac/sac_rnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/skrl/agents/torch/sac/sac_rnn.py -------------------------------------------------------------------------------- /skrl/agents/torch/sarsa/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/skrl/agents/torch/sarsa/__init__.py -------------------------------------------------------------------------------- /skrl/agents/torch/sarsa/sarsa.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/skrl/agents/torch/sarsa/sarsa.py -------------------------------------------------------------------------------- /skrl/agents/torch/sarsa/sarsa_cfg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/skrl/agents/torch/sarsa/sarsa_cfg.py -------------------------------------------------------------------------------- /skrl/agents/torch/td3/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/skrl/agents/torch/td3/__init__.py -------------------------------------------------------------------------------- /skrl/agents/torch/td3/td3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/skrl/agents/torch/td3/td3.py -------------------------------------------------------------------------------- /skrl/agents/torch/td3/td3_cfg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/skrl/agents/torch/td3/td3_cfg.py -------------------------------------------------------------------------------- /skrl/agents/torch/td3/td3_rnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/skrl/agents/torch/td3/td3_rnn.py -------------------------------------------------------------------------------- /skrl/agents/torch/trpo/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/skrl/agents/torch/trpo/__init__.py -------------------------------------------------------------------------------- /skrl/agents/torch/trpo/trpo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/skrl/agents/torch/trpo/trpo.py -------------------------------------------------------------------------------- /skrl/agents/torch/trpo/trpo_cfg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/skrl/agents/torch/trpo/trpo_cfg.py -------------------------------------------------------------------------------- /skrl/agents/torch/trpo/trpo_rnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/skrl/agents/torch/trpo/trpo_rnn.py -------------------------------------------------------------------------------- /skrl/agents/warp/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/skrl/agents/warp/__init__.py -------------------------------------------------------------------------------- /skrl/agents/warp/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/skrl/agents/warp/base.py -------------------------------------------------------------------------------- /skrl/agents/warp/ddpg/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/skrl/agents/warp/ddpg/__init__.py -------------------------------------------------------------------------------- /skrl/agents/warp/ddpg/ddpg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/skrl/agents/warp/ddpg/ddpg.py -------------------------------------------------------------------------------- /skrl/agents/warp/ddpg/ddpg_cfg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/skrl/agents/warp/ddpg/ddpg_cfg.py -------------------------------------------------------------------------------- /skrl/agents/warp/ppo/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/skrl/agents/warp/ppo/__init__.py -------------------------------------------------------------------------------- /skrl/agents/warp/ppo/ppo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/skrl/agents/warp/ppo/ppo.py -------------------------------------------------------------------------------- /skrl/agents/warp/ppo/ppo_cfg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/skrl/agents/warp/ppo/ppo_cfg.py -------------------------------------------------------------------------------- /skrl/agents/warp/sac/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/skrl/agents/warp/sac/__init__.py -------------------------------------------------------------------------------- /skrl/agents/warp/sac/sac.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/skrl/agents/warp/sac/sac.py -------------------------------------------------------------------------------- /skrl/agents/warp/sac/sac_cfg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/skrl/agents/warp/sac/sac_cfg.py -------------------------------------------------------------------------------- /skrl/envs/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /skrl/envs/loaders/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /skrl/envs/loaders/jax/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/skrl/envs/loaders/jax/__init__.py -------------------------------------------------------------------------------- /skrl/envs/loaders/jax/isaaclab_envs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/skrl/envs/loaders/jax/isaaclab_envs.py -------------------------------------------------------------------------------- /skrl/envs/loaders/torch/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/skrl/envs/loaders/torch/__init__.py -------------------------------------------------------------------------------- /skrl/envs/loaders/torch/isaaclab_envs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/skrl/envs/loaders/torch/isaaclab_envs.py -------------------------------------------------------------------------------- /skrl/envs/loaders/warp/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/skrl/envs/loaders/warp/__init__.py -------------------------------------------------------------------------------- /skrl/envs/loaders/warp/isaaclab_envs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/skrl/envs/loaders/warp/isaaclab_envs.py -------------------------------------------------------------------------------- /skrl/envs/wrappers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /skrl/envs/wrappers/jax/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/skrl/envs/wrappers/jax/__init__.py -------------------------------------------------------------------------------- /skrl/envs/wrappers/jax/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/skrl/envs/wrappers/jax/base.py -------------------------------------------------------------------------------- /skrl/envs/wrappers/jax/brax_envs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/skrl/envs/wrappers/jax/brax_envs.py -------------------------------------------------------------------------------- /skrl/envs/wrappers/jax/gym_envs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/skrl/envs/wrappers/jax/gym_envs.py -------------------------------------------------------------------------------- /skrl/envs/wrappers/jax/gymnasium_envs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/skrl/envs/wrappers/jax/gymnasium_envs.py -------------------------------------------------------------------------------- /skrl/envs/wrappers/jax/isaaclab_envs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/skrl/envs/wrappers/jax/isaaclab_envs.py -------------------------------------------------------------------------------- /skrl/envs/wrappers/jax/pettingzoo_envs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/skrl/envs/wrappers/jax/pettingzoo_envs.py -------------------------------------------------------------------------------- /skrl/envs/wrappers/torch/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/skrl/envs/wrappers/torch/__init__.py -------------------------------------------------------------------------------- /skrl/envs/wrappers/torch/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/skrl/envs/wrappers/torch/base.py -------------------------------------------------------------------------------- /skrl/envs/wrappers/torch/brax_envs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/skrl/envs/wrappers/torch/brax_envs.py -------------------------------------------------------------------------------- /skrl/envs/wrappers/torch/deepmind_envs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/skrl/envs/wrappers/torch/deepmind_envs.py -------------------------------------------------------------------------------- /skrl/envs/wrappers/torch/gym_envs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/skrl/envs/wrappers/torch/gym_envs.py -------------------------------------------------------------------------------- /skrl/envs/wrappers/torch/gymnasium_envs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/skrl/envs/wrappers/torch/gymnasium_envs.py -------------------------------------------------------------------------------- /skrl/envs/wrappers/torch/isaaclab_envs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/skrl/envs/wrappers/torch/isaaclab_envs.py -------------------------------------------------------------------------------- /skrl/envs/wrappers/torch/pettingzoo_envs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/skrl/envs/wrappers/torch/pettingzoo_envs.py -------------------------------------------------------------------------------- /skrl/envs/wrappers/warp/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/skrl/envs/wrappers/warp/__init__.py -------------------------------------------------------------------------------- /skrl/envs/wrappers/warp/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/skrl/envs/wrappers/warp/base.py -------------------------------------------------------------------------------- /skrl/envs/wrappers/warp/gymnasium_envs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/skrl/envs/wrappers/warp/gymnasium_envs.py -------------------------------------------------------------------------------- /skrl/envs/wrappers/warp/isaaclab_envs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/skrl/envs/wrappers/warp/isaaclab_envs.py -------------------------------------------------------------------------------- /skrl/memories/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /skrl/memories/jax/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/skrl/memories/jax/__init__.py -------------------------------------------------------------------------------- /skrl/memories/jax/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/skrl/memories/jax/base.py -------------------------------------------------------------------------------- /skrl/memories/jax/random.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/skrl/memories/jax/random.py -------------------------------------------------------------------------------- /skrl/memories/torch/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/skrl/memories/torch/__init__.py -------------------------------------------------------------------------------- /skrl/memories/torch/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/skrl/memories/torch/base.py -------------------------------------------------------------------------------- /skrl/memories/torch/random.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/skrl/memories/torch/random.py -------------------------------------------------------------------------------- /skrl/memories/warp/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/skrl/memories/warp/__init__.py -------------------------------------------------------------------------------- /skrl/memories/warp/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/skrl/memories/warp/base.py -------------------------------------------------------------------------------- /skrl/memories/warp/random.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/skrl/memories/warp/random.py -------------------------------------------------------------------------------- /skrl/models/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /skrl/models/jax/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/skrl/models/jax/__init__.py -------------------------------------------------------------------------------- /skrl/models/jax/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/skrl/models/jax/base.py -------------------------------------------------------------------------------- /skrl/models/jax/categorical.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/skrl/models/jax/categorical.py -------------------------------------------------------------------------------- /skrl/models/jax/deterministic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/skrl/models/jax/deterministic.py -------------------------------------------------------------------------------- /skrl/models/jax/gaussian.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/skrl/models/jax/gaussian.py -------------------------------------------------------------------------------- /skrl/models/jax/multicategorical.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/skrl/models/jax/multicategorical.py -------------------------------------------------------------------------------- /skrl/models/torch/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/skrl/models/torch/__init__.py -------------------------------------------------------------------------------- /skrl/models/torch/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/skrl/models/torch/base.py -------------------------------------------------------------------------------- /skrl/models/torch/categorical.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/skrl/models/torch/categorical.py -------------------------------------------------------------------------------- /skrl/models/torch/deterministic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/skrl/models/torch/deterministic.py -------------------------------------------------------------------------------- /skrl/models/torch/gaussian.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/skrl/models/torch/gaussian.py -------------------------------------------------------------------------------- /skrl/models/torch/multicategorical.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/skrl/models/torch/multicategorical.py -------------------------------------------------------------------------------- /skrl/models/torch/multivariate_gaussian.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/skrl/models/torch/multivariate_gaussian.py -------------------------------------------------------------------------------- /skrl/models/torch/tabular.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/skrl/models/torch/tabular.py -------------------------------------------------------------------------------- /skrl/models/warp/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/skrl/models/warp/__init__.py -------------------------------------------------------------------------------- /skrl/models/warp/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/skrl/models/warp/base.py -------------------------------------------------------------------------------- /skrl/models/warp/deterministic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/skrl/models/warp/deterministic.py -------------------------------------------------------------------------------- /skrl/models/warp/gaussian.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/skrl/models/warp/gaussian.py -------------------------------------------------------------------------------- /skrl/models/warp/nn/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/skrl/models/warp/nn/__init__.py -------------------------------------------------------------------------------- /skrl/models/warp/nn/activations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/skrl/models/warp/nn/activations.py -------------------------------------------------------------------------------- /skrl/models/warp/nn/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/skrl/models/warp/nn/config.py -------------------------------------------------------------------------------- /skrl/models/warp/nn/flatten.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/skrl/models/warp/nn/flatten.py -------------------------------------------------------------------------------- /skrl/models/warp/nn/functional.py: -------------------------------------------------------------------------------- 1 | from skrl.utils.framework.warp import * 2 | -------------------------------------------------------------------------------- /skrl/models/warp/nn/init.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/skrl/models/warp/nn/init.py -------------------------------------------------------------------------------- /skrl/models/warp/nn/linear.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/skrl/models/warp/nn/linear.py -------------------------------------------------------------------------------- /skrl/models/warp/nn/module.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/skrl/models/warp/nn/module.py -------------------------------------------------------------------------------- /skrl/models/warp/nn/parameter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/skrl/models/warp/nn/parameter.py -------------------------------------------------------------------------------- /skrl/models/warp/nn/sequential.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/skrl/models/warp/nn/sequential.py -------------------------------------------------------------------------------- /skrl/multi_agents/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /skrl/multi_agents/jax/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/skrl/multi_agents/jax/__init__.py -------------------------------------------------------------------------------- /skrl/multi_agents/jax/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/skrl/multi_agents/jax/base.py -------------------------------------------------------------------------------- /skrl/multi_agents/jax/ippo/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/skrl/multi_agents/jax/ippo/__init__.py -------------------------------------------------------------------------------- /skrl/multi_agents/jax/ippo/ippo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/skrl/multi_agents/jax/ippo/ippo.py -------------------------------------------------------------------------------- /skrl/multi_agents/jax/ippo/ippo_cfg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/skrl/multi_agents/jax/ippo/ippo_cfg.py -------------------------------------------------------------------------------- /skrl/multi_agents/jax/mappo/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/skrl/multi_agents/jax/mappo/__init__.py -------------------------------------------------------------------------------- /skrl/multi_agents/jax/mappo/mappo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/skrl/multi_agents/jax/mappo/mappo.py -------------------------------------------------------------------------------- /skrl/multi_agents/jax/mappo/mappo_cfg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/skrl/multi_agents/jax/mappo/mappo_cfg.py -------------------------------------------------------------------------------- /skrl/multi_agents/torch/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/skrl/multi_agents/torch/__init__.py -------------------------------------------------------------------------------- /skrl/multi_agents/torch/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/skrl/multi_agents/torch/base.py -------------------------------------------------------------------------------- /skrl/multi_agents/torch/ippo/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/skrl/multi_agents/torch/ippo/__init__.py -------------------------------------------------------------------------------- /skrl/multi_agents/torch/ippo/ippo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/skrl/multi_agents/torch/ippo/ippo.py -------------------------------------------------------------------------------- /skrl/multi_agents/torch/ippo/ippo_cfg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/skrl/multi_agents/torch/ippo/ippo_cfg.py -------------------------------------------------------------------------------- /skrl/multi_agents/torch/mappo/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/skrl/multi_agents/torch/mappo/__init__.py -------------------------------------------------------------------------------- /skrl/multi_agents/torch/mappo/mappo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/skrl/multi_agents/torch/mappo/mappo.py -------------------------------------------------------------------------------- /skrl/multi_agents/torch/mappo/mappo_cfg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/skrl/multi_agents/torch/mappo/mappo_cfg.py -------------------------------------------------------------------------------- /skrl/resources/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /skrl/resources/noises/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /skrl/resources/noises/jax/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/skrl/resources/noises/jax/__init__.py -------------------------------------------------------------------------------- /skrl/resources/noises/jax/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/skrl/resources/noises/jax/base.py -------------------------------------------------------------------------------- /skrl/resources/noises/jax/gaussian.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/skrl/resources/noises/jax/gaussian.py -------------------------------------------------------------------------------- /skrl/resources/noises/jax/ornstein_uhlenbeck.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/skrl/resources/noises/jax/ornstein_uhlenbeck.py -------------------------------------------------------------------------------- /skrl/resources/noises/torch/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/skrl/resources/noises/torch/__init__.py -------------------------------------------------------------------------------- /skrl/resources/noises/torch/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/skrl/resources/noises/torch/base.py -------------------------------------------------------------------------------- /skrl/resources/noises/torch/gaussian.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/skrl/resources/noises/torch/gaussian.py -------------------------------------------------------------------------------- /skrl/resources/noises/torch/ornstein_uhlenbeck.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/skrl/resources/noises/torch/ornstein_uhlenbeck.py -------------------------------------------------------------------------------- /skrl/resources/noises/warp/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/skrl/resources/noises/warp/__init__.py -------------------------------------------------------------------------------- /skrl/resources/noises/warp/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/skrl/resources/noises/warp/base.py -------------------------------------------------------------------------------- /skrl/resources/noises/warp/gaussian.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/skrl/resources/noises/warp/gaussian.py -------------------------------------------------------------------------------- /skrl/resources/noises/warp/ornstein_uhlenbeck.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/skrl/resources/noises/warp/ornstein_uhlenbeck.py -------------------------------------------------------------------------------- /skrl/resources/optimizers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /skrl/resources/optimizers/jax/__init__.py: -------------------------------------------------------------------------------- 1 | from skrl.resources.optimizers.jax.adam import Adam 2 | -------------------------------------------------------------------------------- /skrl/resources/optimizers/jax/adam.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/skrl/resources/optimizers/jax/adam.py -------------------------------------------------------------------------------- /skrl/resources/optimizers/warp/__init__.py: -------------------------------------------------------------------------------- 1 | from skrl.resources.optimizers.warp.adam import Adam 2 | -------------------------------------------------------------------------------- /skrl/resources/optimizers/warp/adam.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/skrl/resources/optimizers/warp/adam.py -------------------------------------------------------------------------------- /skrl/resources/preprocessors/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /skrl/resources/preprocessors/jax/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/skrl/resources/preprocessors/jax/__init__.py -------------------------------------------------------------------------------- /skrl/resources/preprocessors/jax/running_standard_scaler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/skrl/resources/preprocessors/jax/running_standard_scaler.py -------------------------------------------------------------------------------- /skrl/resources/preprocessors/torch/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/skrl/resources/preprocessors/torch/__init__.py -------------------------------------------------------------------------------- /skrl/resources/preprocessors/torch/running_standard_scaler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/skrl/resources/preprocessors/torch/running_standard_scaler.py -------------------------------------------------------------------------------- /skrl/resources/preprocessors/warp/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/skrl/resources/preprocessors/warp/__init__.py -------------------------------------------------------------------------------- /skrl/resources/preprocessors/warp/running_standard_scaler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/skrl/resources/preprocessors/warp/running_standard_scaler.py -------------------------------------------------------------------------------- /skrl/resources/schedulers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /skrl/resources/schedulers/jax/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/skrl/resources/schedulers/jax/__init__.py -------------------------------------------------------------------------------- /skrl/resources/schedulers/jax/kl_adaptive.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/skrl/resources/schedulers/jax/kl_adaptive.py -------------------------------------------------------------------------------- /skrl/resources/schedulers/torch/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/skrl/resources/schedulers/torch/__init__.py -------------------------------------------------------------------------------- /skrl/resources/schedulers/torch/kl_adaptive.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/skrl/resources/schedulers/torch/kl_adaptive.py -------------------------------------------------------------------------------- /skrl/resources/schedulers/warp/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/skrl/resources/schedulers/warp/__init__.py -------------------------------------------------------------------------------- /skrl/resources/schedulers/warp/kl_adaptive.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/skrl/resources/schedulers/warp/kl_adaptive.py -------------------------------------------------------------------------------- /skrl/trainers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /skrl/trainers/jax/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/skrl/trainers/jax/__init__.py -------------------------------------------------------------------------------- /skrl/trainers/jax/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/skrl/trainers/jax/base.py -------------------------------------------------------------------------------- /skrl/trainers/jax/sequential.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/skrl/trainers/jax/sequential.py -------------------------------------------------------------------------------- /skrl/trainers/jax/step.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/skrl/trainers/jax/step.py -------------------------------------------------------------------------------- /skrl/trainers/torch/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/skrl/trainers/torch/__init__.py -------------------------------------------------------------------------------- /skrl/trainers/torch/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/skrl/trainers/torch/base.py -------------------------------------------------------------------------------- /skrl/trainers/torch/parallel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/skrl/trainers/torch/parallel.py -------------------------------------------------------------------------------- /skrl/trainers/torch/sequential.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/skrl/trainers/torch/sequential.py -------------------------------------------------------------------------------- /skrl/trainers/torch/step.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/skrl/trainers/torch/step.py -------------------------------------------------------------------------------- /skrl/trainers/warp/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/skrl/trainers/warp/__init__.py -------------------------------------------------------------------------------- /skrl/trainers/warp/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/skrl/trainers/warp/base.py -------------------------------------------------------------------------------- /skrl/trainers/warp/sequential.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/skrl/trainers/warp/sequential.py -------------------------------------------------------------------------------- /skrl/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/skrl/utils/__init__.py -------------------------------------------------------------------------------- /skrl/utils/distributed/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /skrl/utils/distributed/jax/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/skrl/utils/distributed/jax/__main__.py -------------------------------------------------------------------------------- /skrl/utils/distributed/jax/launcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/skrl/utils/distributed/jax/launcher.py -------------------------------------------------------------------------------- /skrl/utils/framework/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /skrl/utils/framework/warp/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/skrl/utils/framework/warp/__init__.py -------------------------------------------------------------------------------- /skrl/utils/framework/warp/graph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/skrl/utils/framework/warp/graph.py -------------------------------------------------------------------------------- /skrl/utils/framework/warp/math.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/skrl/utils/framework/warp/math.py -------------------------------------------------------------------------------- /skrl/utils/framework/warp/ops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/skrl/utils/framework/warp/ops.py -------------------------------------------------------------------------------- /skrl/utils/huggingface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/skrl/utils/huggingface.py -------------------------------------------------------------------------------- /skrl/utils/model_instantiators/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /skrl/utils/model_instantiators/jax/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/skrl/utils/model_instantiators/jax/__init__.py -------------------------------------------------------------------------------- /skrl/utils/model_instantiators/jax/categorical.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/skrl/utils/model_instantiators/jax/categorical.py -------------------------------------------------------------------------------- /skrl/utils/model_instantiators/jax/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/skrl/utils/model_instantiators/jax/common.py -------------------------------------------------------------------------------- /skrl/utils/model_instantiators/jax/deterministic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/skrl/utils/model_instantiators/jax/deterministic.py -------------------------------------------------------------------------------- /skrl/utils/model_instantiators/jax/gaussian.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/skrl/utils/model_instantiators/jax/gaussian.py -------------------------------------------------------------------------------- /skrl/utils/model_instantiators/jax/multicategorical.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/skrl/utils/model_instantiators/jax/multicategorical.py -------------------------------------------------------------------------------- /skrl/utils/model_instantiators/torch/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/skrl/utils/model_instantiators/torch/__init__.py -------------------------------------------------------------------------------- /skrl/utils/model_instantiators/torch/categorical.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/skrl/utils/model_instantiators/torch/categorical.py -------------------------------------------------------------------------------- /skrl/utils/model_instantiators/torch/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/skrl/utils/model_instantiators/torch/common.py -------------------------------------------------------------------------------- /skrl/utils/model_instantiators/torch/deterministic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/skrl/utils/model_instantiators/torch/deterministic.py -------------------------------------------------------------------------------- /skrl/utils/model_instantiators/torch/gaussian.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/skrl/utils/model_instantiators/torch/gaussian.py -------------------------------------------------------------------------------- /skrl/utils/model_instantiators/torch/multicategorical.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/skrl/utils/model_instantiators/torch/multicategorical.py -------------------------------------------------------------------------------- /skrl/utils/model_instantiators/torch/multivariate_gaussian.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/skrl/utils/model_instantiators/torch/multivariate_gaussian.py -------------------------------------------------------------------------------- /skrl/utils/model_instantiators/torch/shared.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/skrl/utils/model_instantiators/torch/shared.py -------------------------------------------------------------------------------- /skrl/utils/model_instantiators/torch/tabular.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/skrl/utils/model_instantiators/torch/tabular.py -------------------------------------------------------------------------------- /skrl/utils/model_instantiators/warp/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/skrl/utils/model_instantiators/warp/__init__.py -------------------------------------------------------------------------------- /skrl/utils/model_instantiators/warp/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/skrl/utils/model_instantiators/warp/common.py -------------------------------------------------------------------------------- /skrl/utils/model_instantiators/warp/deterministic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/skrl/utils/model_instantiators/warp/deterministic.py -------------------------------------------------------------------------------- /skrl/utils/model_instantiators/warp/gaussian.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/skrl/utils/model_instantiators/warp/gaussian.py -------------------------------------------------------------------------------- /skrl/utils/model_instantiators/warp/shared.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/skrl/utils/model_instantiators/warp/shared.py -------------------------------------------------------------------------------- /skrl/utils/postprocessing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/skrl/utils/postprocessing.py -------------------------------------------------------------------------------- /skrl/utils/runner/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /skrl/utils/runner/jax/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/skrl/utils/runner/jax/__init__.py -------------------------------------------------------------------------------- /skrl/utils/runner/jax/runner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/skrl/utils/runner/jax/runner.py -------------------------------------------------------------------------------- /skrl/utils/runner/torch/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/skrl/utils/runner/torch/__init__.py -------------------------------------------------------------------------------- /skrl/utils/runner/torch/runner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/skrl/utils/runner/torch/runner.py -------------------------------------------------------------------------------- /skrl/utils/runner/warp/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/skrl/utils/runner/warp/__init__.py -------------------------------------------------------------------------------- /skrl/utils/runner/warp/runner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/skrl/utils/runner/warp/runner.py -------------------------------------------------------------------------------- /skrl/utils/spaces/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /skrl/utils/spaces/jax/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/skrl/utils/spaces/jax/__init__.py -------------------------------------------------------------------------------- /skrl/utils/spaces/jax/spaces.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/skrl/utils/spaces/jax/spaces.py -------------------------------------------------------------------------------- /skrl/utils/spaces/torch/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/skrl/utils/spaces/torch/__init__.py -------------------------------------------------------------------------------- /skrl/utils/spaces/torch/spaces.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/skrl/utils/spaces/torch/spaces.py -------------------------------------------------------------------------------- /skrl/utils/spaces/warp/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/skrl/utils/spaces/warp/__init__.py -------------------------------------------------------------------------------- /skrl/utils/spaces/warp/spaces.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/skrl/utils/spaces/warp/spaces.py -------------------------------------------------------------------------------- /skrl/utils/tensorboard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/skrl/utils/tensorboard.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/agents/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/agents/jax/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/agents/jax/test_a2c.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/tests/agents/jax/test_a2c.py -------------------------------------------------------------------------------- /tests/agents/jax/test_cem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/tests/agents/jax/test_cem.py -------------------------------------------------------------------------------- /tests/agents/jax/test_ddpg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/tests/agents/jax/test_ddpg.py -------------------------------------------------------------------------------- /tests/agents/jax/test_ddqn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/tests/agents/jax/test_ddqn.py -------------------------------------------------------------------------------- /tests/agents/jax/test_dqn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/tests/agents/jax/test_dqn.py -------------------------------------------------------------------------------- /tests/agents/jax/test_ppo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/tests/agents/jax/test_ppo.py -------------------------------------------------------------------------------- /tests/agents/jax/test_rpo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/tests/agents/jax/test_rpo.py -------------------------------------------------------------------------------- /tests/agents/jax/test_sac.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/tests/agents/jax/test_sac.py -------------------------------------------------------------------------------- /tests/agents/jax/test_td3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/tests/agents/jax/test_td3.py -------------------------------------------------------------------------------- /tests/agents/torch/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/agents/torch/test_a2c.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/tests/agents/torch/test_a2c.py -------------------------------------------------------------------------------- /tests/agents/torch/test_amp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/tests/agents/torch/test_amp.py -------------------------------------------------------------------------------- /tests/agents/torch/test_cem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/tests/agents/torch/test_cem.py -------------------------------------------------------------------------------- /tests/agents/torch/test_ddpg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/tests/agents/torch/test_ddpg.py -------------------------------------------------------------------------------- /tests/agents/torch/test_ddqn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/tests/agents/torch/test_ddqn.py -------------------------------------------------------------------------------- /tests/agents/torch/test_dqn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/tests/agents/torch/test_dqn.py -------------------------------------------------------------------------------- /tests/agents/torch/test_ppo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/tests/agents/torch/test_ppo.py -------------------------------------------------------------------------------- /tests/agents/torch/test_q_learning.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/tests/agents/torch/test_q_learning.py -------------------------------------------------------------------------------- /tests/agents/torch/test_rpo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/tests/agents/torch/test_rpo.py -------------------------------------------------------------------------------- /tests/agents/torch/test_sac.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/tests/agents/torch/test_sac.py -------------------------------------------------------------------------------- /tests/agents/torch/test_sarsa.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/tests/agents/torch/test_sarsa.py -------------------------------------------------------------------------------- /tests/agents/torch/test_td3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/tests/agents/torch/test_td3.py -------------------------------------------------------------------------------- /tests/agents/torch/test_trpo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/tests/agents/torch/test_trpo.py -------------------------------------------------------------------------------- /tests/agents/warp/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/agents/warp/test_ddpg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/tests/agents/warp/test_ddpg.py -------------------------------------------------------------------------------- /tests/agents/warp/test_ppo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/tests/agents/warp/test_ppo.py -------------------------------------------------------------------------------- /tests/agents/warp/test_sac.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/tests/agents/warp/test_sac.py -------------------------------------------------------------------------------- /tests/envs/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/envs/wrappers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/envs/wrappers/jax/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/envs/wrappers/jax/test_brax_envs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/tests/envs/wrappers/jax/test_brax_envs.py -------------------------------------------------------------------------------- /tests/envs/wrappers/jax/test_gym_envs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/tests/envs/wrappers/jax/test_gym_envs.py -------------------------------------------------------------------------------- /tests/envs/wrappers/jax/test_gymnasium_envs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/tests/envs/wrappers/jax/test_gymnasium_envs.py -------------------------------------------------------------------------------- /tests/envs/wrappers/jax/test_isaaclab_envs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/tests/envs/wrappers/jax/test_isaaclab_envs.py -------------------------------------------------------------------------------- /tests/envs/wrappers/jax/test_pettingzoo_envs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/tests/envs/wrappers/jax/test_pettingzoo_envs.py -------------------------------------------------------------------------------- /tests/envs/wrappers/torch/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/envs/wrappers/torch/test_brax_envs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/tests/envs/wrappers/torch/test_brax_envs.py -------------------------------------------------------------------------------- /tests/envs/wrappers/torch/test_deepmind_envs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/tests/envs/wrappers/torch/test_deepmind_envs.py -------------------------------------------------------------------------------- /tests/envs/wrappers/torch/test_gym_envs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/tests/envs/wrappers/torch/test_gym_envs.py -------------------------------------------------------------------------------- /tests/envs/wrappers/torch/test_gymnasium_envs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/tests/envs/wrappers/torch/test_gymnasium_envs.py -------------------------------------------------------------------------------- /tests/envs/wrappers/torch/test_isaaclab_envs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/tests/envs/wrappers/torch/test_isaaclab_envs.py -------------------------------------------------------------------------------- /tests/envs/wrappers/torch/test_pettingzoo_envs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/tests/envs/wrappers/torch/test_pettingzoo_envs.py -------------------------------------------------------------------------------- /tests/envs/wrappers/warp/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/envs/wrappers/warp/test_gymnasium_envs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/tests/envs/wrappers/warp/test_gymnasium_envs.py -------------------------------------------------------------------------------- /tests/envs/wrappers/warp/test_isaaclab_envs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/tests/envs/wrappers/warp/test_isaaclab_envs.py -------------------------------------------------------------------------------- /tests/memories/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/memories/torch/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/memories/torch/test_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/tests/memories/torch/test_base.py -------------------------------------------------------------------------------- /tests/multi_agents/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/multi_agents/jax/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/multi_agents/jax/test_ippo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/tests/multi_agents/jax/test_ippo.py -------------------------------------------------------------------------------- /tests/multi_agents/jax/test_mappo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/tests/multi_agents/jax/test_mappo.py -------------------------------------------------------------------------------- /tests/multi_agents/torch/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/multi_agents/torch/test_ippo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/tests/multi_agents/torch/test_ippo.py -------------------------------------------------------------------------------- /tests/multi_agents/torch/test_mappo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/tests/multi_agents/torch/test_mappo.py -------------------------------------------------------------------------------- /tests/strategies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/tests/strategies.py -------------------------------------------------------------------------------- /tests/test_jax_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/tests/test_jax_config.py -------------------------------------------------------------------------------- /tests/test_torch_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/tests/test_torch_config.py -------------------------------------------------------------------------------- /tests/test_warp_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/tests/test_warp_config.py -------------------------------------------------------------------------------- /tests/trainers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/trainers/jax/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/trainers/jax/test_sequential.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/tests/trainers/jax/test_sequential.py -------------------------------------------------------------------------------- /tests/trainers/jax/test_step.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/tests/trainers/jax/test_step.py -------------------------------------------------------------------------------- /tests/trainers/torch/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/trainers/torch/test_parallel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/tests/trainers/torch/test_parallel.py -------------------------------------------------------------------------------- /tests/trainers/torch/test_sequential.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/tests/trainers/torch/test_sequential.py -------------------------------------------------------------------------------- /tests/trainers/torch/test_step.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/tests/trainers/torch/test_step.py -------------------------------------------------------------------------------- /tests/trainers/warp/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/trainers/warp/test_sequential.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/tests/trainers/warp/test_sequential.py -------------------------------------------------------------------------------- /tests/utilities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/tests/utilities.py -------------------------------------------------------------------------------- /tests/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/utils/framework/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/utils/framework/warp/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/utils/framework/warp/test_math.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/tests/utils/framework/warp/test_math.py -------------------------------------------------------------------------------- /tests/utils/model_instantiators/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/utils/model_instantiators/jax/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/utils/model_instantiators/jax/test_definition.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/tests/utils/model_instantiators/jax/test_definition.py -------------------------------------------------------------------------------- /tests/utils/model_instantiators/jax/test_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/tests/utils/model_instantiators/jax/test_models.py -------------------------------------------------------------------------------- /tests/utils/model_instantiators/torch/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/utils/model_instantiators/torch/test_definition.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/tests/utils/model_instantiators/torch/test_definition.py -------------------------------------------------------------------------------- /tests/utils/model_instantiators/torch/test_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/tests/utils/model_instantiators/torch/test_models.py -------------------------------------------------------------------------------- /tests/utils/model_instantiators/warp/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/utils/model_instantiators/warp/test_definition.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/tests/utils/model_instantiators/warp/test_definition.py -------------------------------------------------------------------------------- /tests/utils/model_instantiators/warp/test_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/tests/utils/model_instantiators/warp/test_models.py -------------------------------------------------------------------------------- /tests/utils/spaces/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/utils/spaces/jax/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/utils/spaces/jax/test_spaces.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/tests/utils/spaces/jax/test_spaces.py -------------------------------------------------------------------------------- /tests/utils/spaces/torch/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/utils/spaces/torch/test_spaces.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/tests/utils/spaces/torch/test_spaces.py -------------------------------------------------------------------------------- /tests/utils/spaces/warp/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/utils/spaces/warp/test_spaces.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni-SM/skrl/HEAD/tests/utils/spaces/warp/test_spaces.py --------------------------------------------------------------------------------