You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
current_entropy = -jnp.sum(current_prob * jnp.log2(jnp.clip(current_prob, 1e-10, 1.0))) is operating on a single probability value.
Shouldn't you calculate entropy over a distribution?
The text was updated successfully, but these errors were encountered:
current_entropy = -jnp.sum(current_prob * jnp.log2(jnp.clip(current_prob, 1e-10, 1.0))) is operating on a single probability value.
Shouldn't you calculate entropy over a distribution?
The text was updated successfully, but these errors were encountered: