Last active
June 30, 2023 03:12
-
-
Save abhijeet-talaulikar/0b4e31f20ee5eacddd4023957f080ebe to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# define coefficient | |
channel_prior = channel_priors[channel] | |
channel_coefficient = pm.TruncatedNormal(f"coefficient_{channel}", mu=channel_prior, sigma=0.0001, lower=0, upper=0.15) | |
# define saturation | |
alpha = pm.Uniform(f"alpha_{channel}", lower=0.5, upper=2) | |
gamma = pm.Uniform(f"gamma_{channel}", lower=0.5, upper=1.5) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment