https://github.com/thompsar/Venison
Revision c55221310da4c0fd9f7dcd8333fa1af83b3cfcac authored by Andrew Thompson on 08 July 2020, 19:20:21 UTC, committed by Andrew Thompson on 08 July 2020, 19:20:21 UTC
Gaussian modeling with gradient descent optimization implemented. Significant code cleanup, class encapsulation and UI bug fixes are needed.
1 parent 3655697
Tip revision: c55221310da4c0fd9f7dcd8333fa1af83b3cfcac authored by Andrew Thompson on 08 July 2020, 19:20:21 UTC
Gaussian Modeling
Gaussian Modeling
Tip revision: c552213
background_models.py
import numpy as np
def bg3D(x,b,c):
return b*np.exp(-x/c)

Computing file changes ...