Skip to content

Instantly share code, notes, and snippets.

@galenseilis
Created December 21, 2022 04:40
Show Gist options
  • Save galenseilis/b1c9219e967c6ab8b7c369576a9dc67d to your computer and use it in GitHub Desktop.
Save galenseilis/b1c9219e967c6ab8b7c369576a9dc67d to your computer and use it in GitHub Desktop.
Statistical rethinking with Python
# Tensorflow
import tensorflow as tf
print(tf.math.log(0.01 ** 200))
print(200 * tf.math.log(0.01))
# PyMC
import numpy as np
print(np.log(0.01 ** 200))
print(200 * np.log(0.01))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment