├── __pycache__ ├── config.cpython-310.pyc ├── data_augmentations_torch.cpython-310.pyc ├── sac_torch.cpython-310.pyc ├── train_utils_torch.cpython-310.pyc └── wandb.cpython-310.pyc ├── common ├── __pycache__ │ └── encoding.cpython-310.pyc ├── common.py ├── encoding.py ├── evaluation.py ├── optimizers.py └── typing.py ├── config.py ├── data ├── __pycache__ │ ├── data_store_torch.cpython-310.pyc │ ├── dataset_torch.cpython-310.pyc │ ├── memory_efficient_replay_buffer_torch.cpython-310.pyc │ └── replay_buffer_torch.cpython-310.pyc ├── data_store_torch.py ├── dataset_torch.py ├── memory_efficient_replay_buffer_torch.py ├── replay_buffer_serl_torch.py └── replay_buffer_torch.py ├── data_augmentations_torch.py ├── networks ├── __init__.py ├── __pycache__ │ ├── __init__.cpython-310.pyc │ ├── actor_critic_nets_torch.cpython-310.pyc │ ├── lagrange_torch.cpython-310.pyc │ └── mlp_torch.cpython-310.pyc ├── actor_critic_nets_torch.py ├── lagrange_torch.py └── mlp_torch.py ├── pick_cube_sim_20_demos_2024-12-05_15-51-36.pkl ├── run_actor.sh ├── run_learner.sh ├── sac_torch.py ├── train_rlpd_simplified.py ├── train_utils_torch.py └── utils ├── __pycache__ ├── default_config.cpython-310.pyc ├── launcher_torch.cpython-310.pyc ├── mappings.cpython-310.pyc └── wandb.cpython-310.pyc ├── default_config.py ├── launcher_torch.py ├── mappings.py └── wandb.py /__pycache__/config.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ke-Wang1017/hil-serl-pytorch/HEAD/__pycache__/config.cpython-310.pyc -------------------------------------------------------------------------------- /__pycache__/data_augmentations_torch.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ke-Wang1017/hil-serl-pytorch/HEAD/__pycache__/data_augmentations_torch.cpython-310.pyc -------------------------------------------------------------------------------- /__pycache__/sac_torch.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ke-Wang1017/hil-serl-pytorch/HEAD/__pycache__/sac_torch.cpython-310.pyc -------------------------------------------------------------------------------- /__pycache__/train_utils_torch.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ke-Wang1017/hil-serl-pytorch/HEAD/__pycache__/train_utils_torch.cpython-310.pyc -------------------------------------------------------------------------------- /__pycache__/wandb.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ke-Wang1017/hil-serl-pytorch/HEAD/__pycache__/wandb.cpython-310.pyc -------------------------------------------------------------------------------- /common/__pycache__/encoding.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ke-Wang1017/hil-serl-pytorch/HEAD/common/__pycache__/encoding.cpython-310.pyc -------------------------------------------------------------------------------- /common/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ke-Wang1017/hil-serl-pytorch/HEAD/common/common.py -------------------------------------------------------------------------------- /common/encoding.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ke-Wang1017/hil-serl-pytorch/HEAD/common/encoding.py -------------------------------------------------------------------------------- /common/evaluation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ke-Wang1017/hil-serl-pytorch/HEAD/common/evaluation.py -------------------------------------------------------------------------------- /common/optimizers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ke-Wang1017/hil-serl-pytorch/HEAD/common/optimizers.py -------------------------------------------------------------------------------- /common/typing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ke-Wang1017/hil-serl-pytorch/HEAD/common/typing.py -------------------------------------------------------------------------------- /config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ke-Wang1017/hil-serl-pytorch/HEAD/config.py -------------------------------------------------------------------------------- /data/__pycache__/data_store_torch.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ke-Wang1017/hil-serl-pytorch/HEAD/data/__pycache__/data_store_torch.cpython-310.pyc -------------------------------------------------------------------------------- /data/__pycache__/dataset_torch.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ke-Wang1017/hil-serl-pytorch/HEAD/data/__pycache__/dataset_torch.cpython-310.pyc -------------------------------------------------------------------------------- /data/__pycache__/memory_efficient_replay_buffer_torch.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ke-Wang1017/hil-serl-pytorch/HEAD/data/__pycache__/memory_efficient_replay_buffer_torch.cpython-310.pyc -------------------------------------------------------------------------------- /data/__pycache__/replay_buffer_torch.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ke-Wang1017/hil-serl-pytorch/HEAD/data/__pycache__/replay_buffer_torch.cpython-310.pyc -------------------------------------------------------------------------------- /data/data_store_torch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ke-Wang1017/hil-serl-pytorch/HEAD/data/data_store_torch.py -------------------------------------------------------------------------------- /data/dataset_torch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ke-Wang1017/hil-serl-pytorch/HEAD/data/dataset_torch.py -------------------------------------------------------------------------------- /data/memory_efficient_replay_buffer_torch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ke-Wang1017/hil-serl-pytorch/HEAD/data/memory_efficient_replay_buffer_torch.py -------------------------------------------------------------------------------- /data/replay_buffer_serl_torch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ke-Wang1017/hil-serl-pytorch/HEAD/data/replay_buffer_serl_torch.py -------------------------------------------------------------------------------- /data/replay_buffer_torch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ke-Wang1017/hil-serl-pytorch/HEAD/data/replay_buffer_torch.py -------------------------------------------------------------------------------- /data_augmentations_torch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ke-Wang1017/hil-serl-pytorch/HEAD/data_augmentations_torch.py -------------------------------------------------------------------------------- /networks/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ke-Wang1017/hil-serl-pytorch/HEAD/networks/__init__.py -------------------------------------------------------------------------------- /networks/__pycache__/__init__.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ke-Wang1017/hil-serl-pytorch/HEAD/networks/__pycache__/__init__.cpython-310.pyc -------------------------------------------------------------------------------- /networks/__pycache__/actor_critic_nets_torch.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ke-Wang1017/hil-serl-pytorch/HEAD/networks/__pycache__/actor_critic_nets_torch.cpython-310.pyc -------------------------------------------------------------------------------- /networks/__pycache__/lagrange_torch.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ke-Wang1017/hil-serl-pytorch/HEAD/networks/__pycache__/lagrange_torch.cpython-310.pyc -------------------------------------------------------------------------------- /networks/__pycache__/mlp_torch.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ke-Wang1017/hil-serl-pytorch/HEAD/networks/__pycache__/mlp_torch.cpython-310.pyc -------------------------------------------------------------------------------- /networks/actor_critic_nets_torch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ke-Wang1017/hil-serl-pytorch/HEAD/networks/actor_critic_nets_torch.py -------------------------------------------------------------------------------- /networks/lagrange_torch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ke-Wang1017/hil-serl-pytorch/HEAD/networks/lagrange_torch.py -------------------------------------------------------------------------------- /networks/mlp_torch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ke-Wang1017/hil-serl-pytorch/HEAD/networks/mlp_torch.py -------------------------------------------------------------------------------- /pick_cube_sim_20_demos_2024-12-05_15-51-36.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ke-Wang1017/hil-serl-pytorch/HEAD/pick_cube_sim_20_demos_2024-12-05_15-51-36.pkl -------------------------------------------------------------------------------- /run_actor.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ke-Wang1017/hil-serl-pytorch/HEAD/run_actor.sh -------------------------------------------------------------------------------- /run_learner.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ke-Wang1017/hil-serl-pytorch/HEAD/run_learner.sh -------------------------------------------------------------------------------- /sac_torch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ke-Wang1017/hil-serl-pytorch/HEAD/sac_torch.py -------------------------------------------------------------------------------- /train_rlpd_simplified.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ke-Wang1017/hil-serl-pytorch/HEAD/train_rlpd_simplified.py -------------------------------------------------------------------------------- /train_utils_torch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ke-Wang1017/hil-serl-pytorch/HEAD/train_utils_torch.py -------------------------------------------------------------------------------- /utils/__pycache__/default_config.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ke-Wang1017/hil-serl-pytorch/HEAD/utils/__pycache__/default_config.cpython-310.pyc -------------------------------------------------------------------------------- /utils/__pycache__/launcher_torch.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ke-Wang1017/hil-serl-pytorch/HEAD/utils/__pycache__/launcher_torch.cpython-310.pyc -------------------------------------------------------------------------------- /utils/__pycache__/mappings.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ke-Wang1017/hil-serl-pytorch/HEAD/utils/__pycache__/mappings.cpython-310.pyc -------------------------------------------------------------------------------- /utils/__pycache__/wandb.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ke-Wang1017/hil-serl-pytorch/HEAD/utils/__pycache__/wandb.cpython-310.pyc -------------------------------------------------------------------------------- /utils/default_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ke-Wang1017/hil-serl-pytorch/HEAD/utils/default_config.py -------------------------------------------------------------------------------- /utils/launcher_torch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ke-Wang1017/hil-serl-pytorch/HEAD/utils/launcher_torch.py -------------------------------------------------------------------------------- /utils/mappings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ke-Wang1017/hil-serl-pytorch/HEAD/utils/mappings.py -------------------------------------------------------------------------------- /utils/wandb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ke-Wang1017/hil-serl-pytorch/HEAD/utils/wandb.py --------------------------------------------------------------------------------