denisyarats / pytorch_sac_ae

PyTorch implementation of Soft Actor-Critic + Autoencoder(SAC+AE)
https://sites.google.com/view/sac-ae/home
MIT License
221 stars 34 forks source link

Sac:pixel figure #2

Closed bycn closed 4 years ago

bycn commented 4 years ago

What is the recommended way to recreate the sac:pixel from the results? Modify Pytorch_sac, or sac_ae, or is code available? (I know changes are trivial in some sense but I'd just like to keep the implementation as similar as possible)

denisyarats commented 4 years ago

You can set --decoder_update_freq to some large number, ideally larger than the total number of training steps. This will prevent decoder from being updated ever.

bycn commented 4 years ago

Thanks, appreciate it.