Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

soft module codebase notes #79

Open
NirViaje opened this issue Aug 23, 2021 · 1 comment
Open

soft module codebase notes #79

NirViaje opened this issue Aug 23, 2021 · 1 comment

Comments

@NirViaje
Copy link
Owner

NirViaje commented Aug 23, 2021

https://rchalyang.github.io/SoftModule/

"epoch_frames" : 200
"batch_size" : 1280

torchrl/algo/off_policy/twin_sac_q.py

get sparse loss here

        """
        Policy Loss
        """
        if not self.reparameterization:
            raise NotImplementedError
        else:
            assert log_probs.shape == q_new_actions.shape
            policy_loss = ( alpha * log_probs - q_new_actions).mean()

        std_reg_loss = self.policy_std_reg_weight * (log_std**2).mean()
        mean_reg_loss = self.policy_mean_reg_weight * (mean**2).mean()

        policy_loss += std_reg_loss + mean_reg_loss

mujoco210-linux-x86_64.tar.gz

local_debug_logger-master.zip

@NirViaje
Copy link
Owner Author

NirViaje commented Sep 13, 2021

CoBERL

image
image
image
image
image

v-MPO

image

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant