RSSAmplifier

kevin frans blog · Dec 19, 2023

Small-Research: Tanh Activations with DDPG

0
Sign in to vote or save

This site does not allow itself to be embedded. You can still read it on the original site — the toolbar below keeps your place in the directory.

When implementing DDPG-style policy extraction, we often use a tanh normalizer to bound the action space. That way the policy does not attempt to output something OOD when the Q-function is only trained on actions in [-1, 1]. dist = agent.actor(batch['observations']) normalized_actions = jnp.tanh(dist.loc) q

Read on kvfrans.com

Comments

Nothing yet. Say the first thing.

    Sign in to join the conversation.