├── .gitignore ├── .gitmodules ├── LICENSE ├── README.md ├── config ├── online │ ├── redq.gin │ ├── sac.gin │ ├── sac_synther_dmc.gin │ └── sac_synther_openai.gin ├── resmlp_denoiser.gin └── resmlp_w1024_denoiser.gin ├── figs └── diffusion.png ├── requirements.txt └── synther ├── corl ├── LICENSE ├── algorithms │ ├── cql.py │ ├── edac.py │ ├── iql.py │ └── td3_bc.py ├── shared │ ├── __init__.py │ ├── buffer.py │ └── logger.py └── yaml │ ├── cql │ ├── antmaze │ │ ├── large_play_v2.yaml │ │ ├── medium_play_v2.yaml │ │ └── umaze_v2.yaml │ ├── halfcheetah │ │ ├── expert_v2.yaml │ │ ├── full_replay_v2.yaml │ │ ├── medium_expert_v2.yaml │ │ ├── medium_replay_v2.yaml │ │ ├── medium_v2.yaml │ │ └── random_v2.yaml │ ├── hopper │ │ ├── expert_v2.yaml │ │ ├── full_replay_v2.yaml │ │ ├── medium_expert_v2.yaml │ │ ├── medium_replay_v2.yaml │ │ ├── medium_v2.yaml │ │ └── random_v2.yaml │ ├── maze2d │ │ ├── large_dense_v1.yaml │ │ ├── large_v1.yaml │ │ ├── medium_dense_v1.yaml │ │ ├── medium_v1.yaml │ │ ├── umaze_dense_v1.yaml │ │ └── umaze_v1.yaml │ └── walker2d │ │ ├── expert_v2.yaml │ │ ├── full_replay_v2.yaml │ │ ├── medium_expert_v2.yaml │ │ ├── medium_replay_v2.yaml │ │ ├── medium_v2.yaml │ │ └── random_v2.yaml │ ├── edac │ ├── antmaze │ │ ├── large_play_v2.yaml │ │ ├── medium_play_v2.yaml │ │ └── umaze_v2.yaml │ ├── halfcheetah │ │ ├── medium_expert_v2.yaml │ │ ├── medium_replay_v2.yaml │ │ └── medium_v2.yaml │ ├── hopper │ │ ├── medium_expert_v2.yaml │ │ ├── medium_replay_v2.yaml │ │ └── medium_v2.yaml │ ├── maze2d │ │ ├── large_v1.yaml │ │ ├── medium_v1.yaml │ │ └── umaze_v1.yaml │ └── walker2d │ │ ├── medium_expert_v2.yaml │ │ ├── medium_replay_v2.yaml │ │ └── medium_v2.yaml │ ├── iql │ ├── antmaze │ │ ├── large_play_v2.yaml │ │ ├── medium_play_v2.yaml │ │ └── umaze_v2.yaml │ ├── halfcheetah │ │ ├── expert_v2.yaml │ │ ├── full_replay_v2.yaml │ │ ├── medium_expert_v2.yaml │ │ ├── medium_replay_v2.yaml │ │ ├── medium_v2.yaml │ │ └── random_v2.yaml │ ├── hopper │ │ ├── expert_v2.yaml │ │ ├── full_replay_v2.yaml │ │ ├── medium_expert_v2.yaml │ │ ├── medium_replay_v2.yaml │ │ ├── medium_v2.yaml │ │ └── random_v2.yaml │ ├── maze2d │ │ ├── large_dense_v1.yaml │ │ ├── large_v1.yaml │ │ ├── medium_dense_v1.yaml │ │ ├── medium_v1.yaml │ │ ├── umaze_dense_v1.yaml │ │ └── umaze_v1.yaml │ └── walker2d │ │ ├── expert_v2.yaml │ │ ├── full_replay_v2.yaml │ │ ├── medium_expert_v2.yaml │ │ ├── medium_replay_v2.yaml │ │ ├── medium_v2.yaml │ │ └── random_v2.yaml │ └── td3_bc │ ├── antmaze │ ├── large_play_v2.yaml │ ├── medium_play_v2.yaml │ └── umaze_v2.yaml │ ├── halfcheetah │ ├── expert_v2.yaml │ ├── full_replay_v2.yaml │ ├── medium_expert_v2.yaml │ ├── medium_replay_v2.yaml │ ├── medium_v2.yaml │ └── random_v2.yaml │ ├── hopper │ ├── expert_v2.yaml │ ├── full_replay_v2.yaml │ ├── medium_expert_v2.yaml │ ├── medium_replay_v2.yaml │ ├── medium_v2.yaml │ └── random_v2.yaml │ ├── maze2d │ ├── large_dense_v1.yaml │ ├── large_v1.yaml │ ├── medium_dense_v1.yaml │ ├── medium_v1.yaml │ ├── umaze_dense_v1.yaml │ └── umaze_v1.yaml │ └── walker2d │ ├── expert_v2.yaml │ ├── full_replay_v2.yaml │ ├── medium_expert_v2.yaml │ ├── medium_replay_v2.yaml │ ├── medium_v2.yaml │ └── random_v2.yaml ├── diffusion ├── __init__.py ├── denoiser_network.py ├── elucidated_diffusion.py ├── norm.py ├── train_diffuser.py └── utils.py └── online ├── online_exp.py ├── redq_rlpd_agent.py └── utils.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conglu1997/SynthER/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conglu1997/SynthER/HEAD/.gitmodules -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conglu1997/SynthER/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conglu1997/SynthER/HEAD/README.md -------------------------------------------------------------------------------- /config/online/redq.gin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conglu1997/SynthER/HEAD/config/online/redq.gin -------------------------------------------------------------------------------- /config/online/sac.gin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conglu1997/SynthER/HEAD/config/online/sac.gin -------------------------------------------------------------------------------- /config/online/sac_synther_dmc.gin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conglu1997/SynthER/HEAD/config/online/sac_synther_dmc.gin -------------------------------------------------------------------------------- /config/online/sac_synther_openai.gin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conglu1997/SynthER/HEAD/config/online/sac_synther_openai.gin -------------------------------------------------------------------------------- /config/resmlp_denoiser.gin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conglu1997/SynthER/HEAD/config/resmlp_denoiser.gin -------------------------------------------------------------------------------- /config/resmlp_w1024_denoiser.gin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conglu1997/SynthER/HEAD/config/resmlp_w1024_denoiser.gin -------------------------------------------------------------------------------- /figs/diffusion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conglu1997/SynthER/HEAD/figs/diffusion.png -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conglu1997/SynthER/HEAD/requirements.txt -------------------------------------------------------------------------------- /synther/corl/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conglu1997/SynthER/HEAD/synther/corl/LICENSE -------------------------------------------------------------------------------- /synther/corl/algorithms/cql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conglu1997/SynthER/HEAD/synther/corl/algorithms/cql.py -------------------------------------------------------------------------------- /synther/corl/algorithms/edac.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conglu1997/SynthER/HEAD/synther/corl/algorithms/edac.py -------------------------------------------------------------------------------- /synther/corl/algorithms/iql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conglu1997/SynthER/HEAD/synther/corl/algorithms/iql.py -------------------------------------------------------------------------------- /synther/corl/algorithms/td3_bc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conglu1997/SynthER/HEAD/synther/corl/algorithms/td3_bc.py -------------------------------------------------------------------------------- /synther/corl/shared/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /synther/corl/shared/buffer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conglu1997/SynthER/HEAD/synther/corl/shared/buffer.py -------------------------------------------------------------------------------- /synther/corl/shared/logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conglu1997/SynthER/HEAD/synther/corl/shared/logger.py -------------------------------------------------------------------------------- /synther/corl/yaml/cql/antmaze/large_play_v2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conglu1997/SynthER/HEAD/synther/corl/yaml/cql/antmaze/large_play_v2.yaml -------------------------------------------------------------------------------- /synther/corl/yaml/cql/antmaze/medium_play_v2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conglu1997/SynthER/HEAD/synther/corl/yaml/cql/antmaze/medium_play_v2.yaml -------------------------------------------------------------------------------- /synther/corl/yaml/cql/antmaze/umaze_v2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conglu1997/SynthER/HEAD/synther/corl/yaml/cql/antmaze/umaze_v2.yaml -------------------------------------------------------------------------------- /synther/corl/yaml/cql/halfcheetah/expert_v2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conglu1997/SynthER/HEAD/synther/corl/yaml/cql/halfcheetah/expert_v2.yaml -------------------------------------------------------------------------------- /synther/corl/yaml/cql/halfcheetah/full_replay_v2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conglu1997/SynthER/HEAD/synther/corl/yaml/cql/halfcheetah/full_replay_v2.yaml -------------------------------------------------------------------------------- /synther/corl/yaml/cql/halfcheetah/medium_expert_v2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conglu1997/SynthER/HEAD/synther/corl/yaml/cql/halfcheetah/medium_expert_v2.yaml -------------------------------------------------------------------------------- /synther/corl/yaml/cql/halfcheetah/medium_replay_v2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conglu1997/SynthER/HEAD/synther/corl/yaml/cql/halfcheetah/medium_replay_v2.yaml -------------------------------------------------------------------------------- /synther/corl/yaml/cql/halfcheetah/medium_v2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conglu1997/SynthER/HEAD/synther/corl/yaml/cql/halfcheetah/medium_v2.yaml -------------------------------------------------------------------------------- /synther/corl/yaml/cql/halfcheetah/random_v2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conglu1997/SynthER/HEAD/synther/corl/yaml/cql/halfcheetah/random_v2.yaml -------------------------------------------------------------------------------- /synther/corl/yaml/cql/hopper/expert_v2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conglu1997/SynthER/HEAD/synther/corl/yaml/cql/hopper/expert_v2.yaml -------------------------------------------------------------------------------- /synther/corl/yaml/cql/hopper/full_replay_v2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conglu1997/SynthER/HEAD/synther/corl/yaml/cql/hopper/full_replay_v2.yaml -------------------------------------------------------------------------------- /synther/corl/yaml/cql/hopper/medium_expert_v2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conglu1997/SynthER/HEAD/synther/corl/yaml/cql/hopper/medium_expert_v2.yaml -------------------------------------------------------------------------------- /synther/corl/yaml/cql/hopper/medium_replay_v2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conglu1997/SynthER/HEAD/synther/corl/yaml/cql/hopper/medium_replay_v2.yaml -------------------------------------------------------------------------------- /synther/corl/yaml/cql/hopper/medium_v2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conglu1997/SynthER/HEAD/synther/corl/yaml/cql/hopper/medium_v2.yaml -------------------------------------------------------------------------------- /synther/corl/yaml/cql/hopper/random_v2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conglu1997/SynthER/HEAD/synther/corl/yaml/cql/hopper/random_v2.yaml -------------------------------------------------------------------------------- /synther/corl/yaml/cql/maze2d/large_dense_v1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conglu1997/SynthER/HEAD/synther/corl/yaml/cql/maze2d/large_dense_v1.yaml -------------------------------------------------------------------------------- /synther/corl/yaml/cql/maze2d/large_v1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conglu1997/SynthER/HEAD/synther/corl/yaml/cql/maze2d/large_v1.yaml -------------------------------------------------------------------------------- /synther/corl/yaml/cql/maze2d/medium_dense_v1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conglu1997/SynthER/HEAD/synther/corl/yaml/cql/maze2d/medium_dense_v1.yaml -------------------------------------------------------------------------------- /synther/corl/yaml/cql/maze2d/medium_v1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conglu1997/SynthER/HEAD/synther/corl/yaml/cql/maze2d/medium_v1.yaml -------------------------------------------------------------------------------- /synther/corl/yaml/cql/maze2d/umaze_dense_v1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conglu1997/SynthER/HEAD/synther/corl/yaml/cql/maze2d/umaze_dense_v1.yaml -------------------------------------------------------------------------------- /synther/corl/yaml/cql/maze2d/umaze_v1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conglu1997/SynthER/HEAD/synther/corl/yaml/cql/maze2d/umaze_v1.yaml -------------------------------------------------------------------------------- /synther/corl/yaml/cql/walker2d/expert_v2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conglu1997/SynthER/HEAD/synther/corl/yaml/cql/walker2d/expert_v2.yaml -------------------------------------------------------------------------------- /synther/corl/yaml/cql/walker2d/full_replay_v2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conglu1997/SynthER/HEAD/synther/corl/yaml/cql/walker2d/full_replay_v2.yaml -------------------------------------------------------------------------------- /synther/corl/yaml/cql/walker2d/medium_expert_v2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conglu1997/SynthER/HEAD/synther/corl/yaml/cql/walker2d/medium_expert_v2.yaml -------------------------------------------------------------------------------- /synther/corl/yaml/cql/walker2d/medium_replay_v2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conglu1997/SynthER/HEAD/synther/corl/yaml/cql/walker2d/medium_replay_v2.yaml -------------------------------------------------------------------------------- /synther/corl/yaml/cql/walker2d/medium_v2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conglu1997/SynthER/HEAD/synther/corl/yaml/cql/walker2d/medium_v2.yaml -------------------------------------------------------------------------------- /synther/corl/yaml/cql/walker2d/random_v2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conglu1997/SynthER/HEAD/synther/corl/yaml/cql/walker2d/random_v2.yaml -------------------------------------------------------------------------------- /synther/corl/yaml/edac/antmaze/large_play_v2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conglu1997/SynthER/HEAD/synther/corl/yaml/edac/antmaze/large_play_v2.yaml -------------------------------------------------------------------------------- /synther/corl/yaml/edac/antmaze/medium_play_v2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conglu1997/SynthER/HEAD/synther/corl/yaml/edac/antmaze/medium_play_v2.yaml -------------------------------------------------------------------------------- /synther/corl/yaml/edac/antmaze/umaze_v2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conglu1997/SynthER/HEAD/synther/corl/yaml/edac/antmaze/umaze_v2.yaml -------------------------------------------------------------------------------- /synther/corl/yaml/edac/halfcheetah/medium_expert_v2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conglu1997/SynthER/HEAD/synther/corl/yaml/edac/halfcheetah/medium_expert_v2.yaml -------------------------------------------------------------------------------- /synther/corl/yaml/edac/halfcheetah/medium_replay_v2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conglu1997/SynthER/HEAD/synther/corl/yaml/edac/halfcheetah/medium_replay_v2.yaml -------------------------------------------------------------------------------- /synther/corl/yaml/edac/halfcheetah/medium_v2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conglu1997/SynthER/HEAD/synther/corl/yaml/edac/halfcheetah/medium_v2.yaml -------------------------------------------------------------------------------- /synther/corl/yaml/edac/hopper/medium_expert_v2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conglu1997/SynthER/HEAD/synther/corl/yaml/edac/hopper/medium_expert_v2.yaml -------------------------------------------------------------------------------- /synther/corl/yaml/edac/hopper/medium_replay_v2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conglu1997/SynthER/HEAD/synther/corl/yaml/edac/hopper/medium_replay_v2.yaml -------------------------------------------------------------------------------- /synther/corl/yaml/edac/hopper/medium_v2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conglu1997/SynthER/HEAD/synther/corl/yaml/edac/hopper/medium_v2.yaml -------------------------------------------------------------------------------- /synther/corl/yaml/edac/maze2d/large_v1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conglu1997/SynthER/HEAD/synther/corl/yaml/edac/maze2d/large_v1.yaml -------------------------------------------------------------------------------- /synther/corl/yaml/edac/maze2d/medium_v1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conglu1997/SynthER/HEAD/synther/corl/yaml/edac/maze2d/medium_v1.yaml -------------------------------------------------------------------------------- /synther/corl/yaml/edac/maze2d/umaze_v1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conglu1997/SynthER/HEAD/synther/corl/yaml/edac/maze2d/umaze_v1.yaml -------------------------------------------------------------------------------- /synther/corl/yaml/edac/walker2d/medium_expert_v2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conglu1997/SynthER/HEAD/synther/corl/yaml/edac/walker2d/medium_expert_v2.yaml -------------------------------------------------------------------------------- /synther/corl/yaml/edac/walker2d/medium_replay_v2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conglu1997/SynthER/HEAD/synther/corl/yaml/edac/walker2d/medium_replay_v2.yaml -------------------------------------------------------------------------------- /synther/corl/yaml/edac/walker2d/medium_v2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conglu1997/SynthER/HEAD/synther/corl/yaml/edac/walker2d/medium_v2.yaml -------------------------------------------------------------------------------- /synther/corl/yaml/iql/antmaze/large_play_v2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conglu1997/SynthER/HEAD/synther/corl/yaml/iql/antmaze/large_play_v2.yaml -------------------------------------------------------------------------------- /synther/corl/yaml/iql/antmaze/medium_play_v2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conglu1997/SynthER/HEAD/synther/corl/yaml/iql/antmaze/medium_play_v2.yaml -------------------------------------------------------------------------------- /synther/corl/yaml/iql/antmaze/umaze_v2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conglu1997/SynthER/HEAD/synther/corl/yaml/iql/antmaze/umaze_v2.yaml -------------------------------------------------------------------------------- /synther/corl/yaml/iql/halfcheetah/expert_v2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conglu1997/SynthER/HEAD/synther/corl/yaml/iql/halfcheetah/expert_v2.yaml -------------------------------------------------------------------------------- /synther/corl/yaml/iql/halfcheetah/full_replay_v2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conglu1997/SynthER/HEAD/synther/corl/yaml/iql/halfcheetah/full_replay_v2.yaml -------------------------------------------------------------------------------- /synther/corl/yaml/iql/halfcheetah/medium_expert_v2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conglu1997/SynthER/HEAD/synther/corl/yaml/iql/halfcheetah/medium_expert_v2.yaml -------------------------------------------------------------------------------- /synther/corl/yaml/iql/halfcheetah/medium_replay_v2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conglu1997/SynthER/HEAD/synther/corl/yaml/iql/halfcheetah/medium_replay_v2.yaml -------------------------------------------------------------------------------- /synther/corl/yaml/iql/halfcheetah/medium_v2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conglu1997/SynthER/HEAD/synther/corl/yaml/iql/halfcheetah/medium_v2.yaml -------------------------------------------------------------------------------- /synther/corl/yaml/iql/halfcheetah/random_v2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conglu1997/SynthER/HEAD/synther/corl/yaml/iql/halfcheetah/random_v2.yaml -------------------------------------------------------------------------------- /synther/corl/yaml/iql/hopper/expert_v2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conglu1997/SynthER/HEAD/synther/corl/yaml/iql/hopper/expert_v2.yaml -------------------------------------------------------------------------------- /synther/corl/yaml/iql/hopper/full_replay_v2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conglu1997/SynthER/HEAD/synther/corl/yaml/iql/hopper/full_replay_v2.yaml -------------------------------------------------------------------------------- /synther/corl/yaml/iql/hopper/medium_expert_v2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conglu1997/SynthER/HEAD/synther/corl/yaml/iql/hopper/medium_expert_v2.yaml -------------------------------------------------------------------------------- /synther/corl/yaml/iql/hopper/medium_replay_v2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conglu1997/SynthER/HEAD/synther/corl/yaml/iql/hopper/medium_replay_v2.yaml -------------------------------------------------------------------------------- /synther/corl/yaml/iql/hopper/medium_v2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conglu1997/SynthER/HEAD/synther/corl/yaml/iql/hopper/medium_v2.yaml -------------------------------------------------------------------------------- /synther/corl/yaml/iql/hopper/random_v2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conglu1997/SynthER/HEAD/synther/corl/yaml/iql/hopper/random_v2.yaml -------------------------------------------------------------------------------- /synther/corl/yaml/iql/maze2d/large_dense_v1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conglu1997/SynthER/HEAD/synther/corl/yaml/iql/maze2d/large_dense_v1.yaml -------------------------------------------------------------------------------- /synther/corl/yaml/iql/maze2d/large_v1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conglu1997/SynthER/HEAD/synther/corl/yaml/iql/maze2d/large_v1.yaml -------------------------------------------------------------------------------- /synther/corl/yaml/iql/maze2d/medium_dense_v1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conglu1997/SynthER/HEAD/synther/corl/yaml/iql/maze2d/medium_dense_v1.yaml -------------------------------------------------------------------------------- /synther/corl/yaml/iql/maze2d/medium_v1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conglu1997/SynthER/HEAD/synther/corl/yaml/iql/maze2d/medium_v1.yaml -------------------------------------------------------------------------------- /synther/corl/yaml/iql/maze2d/umaze_dense_v1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conglu1997/SynthER/HEAD/synther/corl/yaml/iql/maze2d/umaze_dense_v1.yaml -------------------------------------------------------------------------------- /synther/corl/yaml/iql/maze2d/umaze_v1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conglu1997/SynthER/HEAD/synther/corl/yaml/iql/maze2d/umaze_v1.yaml -------------------------------------------------------------------------------- /synther/corl/yaml/iql/walker2d/expert_v2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conglu1997/SynthER/HEAD/synther/corl/yaml/iql/walker2d/expert_v2.yaml -------------------------------------------------------------------------------- /synther/corl/yaml/iql/walker2d/full_replay_v2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conglu1997/SynthER/HEAD/synther/corl/yaml/iql/walker2d/full_replay_v2.yaml -------------------------------------------------------------------------------- /synther/corl/yaml/iql/walker2d/medium_expert_v2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conglu1997/SynthER/HEAD/synther/corl/yaml/iql/walker2d/medium_expert_v2.yaml -------------------------------------------------------------------------------- /synther/corl/yaml/iql/walker2d/medium_replay_v2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conglu1997/SynthER/HEAD/synther/corl/yaml/iql/walker2d/medium_replay_v2.yaml -------------------------------------------------------------------------------- /synther/corl/yaml/iql/walker2d/medium_v2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conglu1997/SynthER/HEAD/synther/corl/yaml/iql/walker2d/medium_v2.yaml -------------------------------------------------------------------------------- /synther/corl/yaml/iql/walker2d/random_v2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conglu1997/SynthER/HEAD/synther/corl/yaml/iql/walker2d/random_v2.yaml -------------------------------------------------------------------------------- /synther/corl/yaml/td3_bc/antmaze/large_play_v2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conglu1997/SynthER/HEAD/synther/corl/yaml/td3_bc/antmaze/large_play_v2.yaml -------------------------------------------------------------------------------- /synther/corl/yaml/td3_bc/antmaze/medium_play_v2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conglu1997/SynthER/HEAD/synther/corl/yaml/td3_bc/antmaze/medium_play_v2.yaml -------------------------------------------------------------------------------- /synther/corl/yaml/td3_bc/antmaze/umaze_v2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conglu1997/SynthER/HEAD/synther/corl/yaml/td3_bc/antmaze/umaze_v2.yaml -------------------------------------------------------------------------------- /synther/corl/yaml/td3_bc/halfcheetah/expert_v2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conglu1997/SynthER/HEAD/synther/corl/yaml/td3_bc/halfcheetah/expert_v2.yaml -------------------------------------------------------------------------------- /synther/corl/yaml/td3_bc/halfcheetah/full_replay_v2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conglu1997/SynthER/HEAD/synther/corl/yaml/td3_bc/halfcheetah/full_replay_v2.yaml -------------------------------------------------------------------------------- /synther/corl/yaml/td3_bc/halfcheetah/medium_expert_v2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conglu1997/SynthER/HEAD/synther/corl/yaml/td3_bc/halfcheetah/medium_expert_v2.yaml -------------------------------------------------------------------------------- /synther/corl/yaml/td3_bc/halfcheetah/medium_replay_v2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conglu1997/SynthER/HEAD/synther/corl/yaml/td3_bc/halfcheetah/medium_replay_v2.yaml -------------------------------------------------------------------------------- /synther/corl/yaml/td3_bc/halfcheetah/medium_v2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conglu1997/SynthER/HEAD/synther/corl/yaml/td3_bc/halfcheetah/medium_v2.yaml -------------------------------------------------------------------------------- /synther/corl/yaml/td3_bc/halfcheetah/random_v2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conglu1997/SynthER/HEAD/synther/corl/yaml/td3_bc/halfcheetah/random_v2.yaml -------------------------------------------------------------------------------- /synther/corl/yaml/td3_bc/hopper/expert_v2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conglu1997/SynthER/HEAD/synther/corl/yaml/td3_bc/hopper/expert_v2.yaml -------------------------------------------------------------------------------- /synther/corl/yaml/td3_bc/hopper/full_replay_v2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conglu1997/SynthER/HEAD/synther/corl/yaml/td3_bc/hopper/full_replay_v2.yaml -------------------------------------------------------------------------------- /synther/corl/yaml/td3_bc/hopper/medium_expert_v2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conglu1997/SynthER/HEAD/synther/corl/yaml/td3_bc/hopper/medium_expert_v2.yaml -------------------------------------------------------------------------------- /synther/corl/yaml/td3_bc/hopper/medium_replay_v2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conglu1997/SynthER/HEAD/synther/corl/yaml/td3_bc/hopper/medium_replay_v2.yaml -------------------------------------------------------------------------------- /synther/corl/yaml/td3_bc/hopper/medium_v2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conglu1997/SynthER/HEAD/synther/corl/yaml/td3_bc/hopper/medium_v2.yaml -------------------------------------------------------------------------------- /synther/corl/yaml/td3_bc/hopper/random_v2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conglu1997/SynthER/HEAD/synther/corl/yaml/td3_bc/hopper/random_v2.yaml -------------------------------------------------------------------------------- /synther/corl/yaml/td3_bc/maze2d/large_dense_v1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conglu1997/SynthER/HEAD/synther/corl/yaml/td3_bc/maze2d/large_dense_v1.yaml -------------------------------------------------------------------------------- /synther/corl/yaml/td3_bc/maze2d/large_v1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conglu1997/SynthER/HEAD/synther/corl/yaml/td3_bc/maze2d/large_v1.yaml -------------------------------------------------------------------------------- /synther/corl/yaml/td3_bc/maze2d/medium_dense_v1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conglu1997/SynthER/HEAD/synther/corl/yaml/td3_bc/maze2d/medium_dense_v1.yaml -------------------------------------------------------------------------------- /synther/corl/yaml/td3_bc/maze2d/medium_v1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conglu1997/SynthER/HEAD/synther/corl/yaml/td3_bc/maze2d/medium_v1.yaml -------------------------------------------------------------------------------- /synther/corl/yaml/td3_bc/maze2d/umaze_dense_v1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conglu1997/SynthER/HEAD/synther/corl/yaml/td3_bc/maze2d/umaze_dense_v1.yaml -------------------------------------------------------------------------------- /synther/corl/yaml/td3_bc/maze2d/umaze_v1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conglu1997/SynthER/HEAD/synther/corl/yaml/td3_bc/maze2d/umaze_v1.yaml -------------------------------------------------------------------------------- /synther/corl/yaml/td3_bc/walker2d/expert_v2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conglu1997/SynthER/HEAD/synther/corl/yaml/td3_bc/walker2d/expert_v2.yaml -------------------------------------------------------------------------------- /synther/corl/yaml/td3_bc/walker2d/full_replay_v2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conglu1997/SynthER/HEAD/synther/corl/yaml/td3_bc/walker2d/full_replay_v2.yaml -------------------------------------------------------------------------------- /synther/corl/yaml/td3_bc/walker2d/medium_expert_v2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conglu1997/SynthER/HEAD/synther/corl/yaml/td3_bc/walker2d/medium_expert_v2.yaml -------------------------------------------------------------------------------- /synther/corl/yaml/td3_bc/walker2d/medium_replay_v2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conglu1997/SynthER/HEAD/synther/corl/yaml/td3_bc/walker2d/medium_replay_v2.yaml -------------------------------------------------------------------------------- /synther/corl/yaml/td3_bc/walker2d/medium_v2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conglu1997/SynthER/HEAD/synther/corl/yaml/td3_bc/walker2d/medium_v2.yaml -------------------------------------------------------------------------------- /synther/corl/yaml/td3_bc/walker2d/random_v2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conglu1997/SynthER/HEAD/synther/corl/yaml/td3_bc/walker2d/random_v2.yaml -------------------------------------------------------------------------------- /synther/diffusion/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /synther/diffusion/denoiser_network.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conglu1997/SynthER/HEAD/synther/diffusion/denoiser_network.py -------------------------------------------------------------------------------- /synther/diffusion/elucidated_diffusion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conglu1997/SynthER/HEAD/synther/diffusion/elucidated_diffusion.py -------------------------------------------------------------------------------- /synther/diffusion/norm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conglu1997/SynthER/HEAD/synther/diffusion/norm.py -------------------------------------------------------------------------------- /synther/diffusion/train_diffuser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conglu1997/SynthER/HEAD/synther/diffusion/train_diffuser.py -------------------------------------------------------------------------------- /synther/diffusion/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conglu1997/SynthER/HEAD/synther/diffusion/utils.py -------------------------------------------------------------------------------- /synther/online/online_exp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conglu1997/SynthER/HEAD/synther/online/online_exp.py -------------------------------------------------------------------------------- /synther/online/redq_rlpd_agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conglu1997/SynthER/HEAD/synther/online/redq_rlpd_agent.py -------------------------------------------------------------------------------- /synther/online/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conglu1997/SynthER/HEAD/synther/online/utils.py --------------------------------------------------------------------------------