Skip to content

Instantly share code, notes, and snippets.

@elumixor
Created May 24, 2020 23:27
Show Gist options
  • Save elumixor/48213d6be435190f0bfd3b230d86725f to your computer and use it in GitHub Desktop.
Save elumixor/48213d6be435190f0bfd3b230d86725f to your computer and use it in GitHub Desktop.
def kl_div(p, q):
p = p.detach()
return (p * (p.log() - q.log())).sum(-1).mean()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment