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
defpotential_fn(self, x: ArrayLike) ->ArrayLike:
""" See Example 1 of "Modeling Molecular Kinetics with tICA and the Kernel Trick" 10.1021/ct5007357 """return4* (
x**8+0.8*np.exp(-80* (x**2))
+0.2*np.exp(-80* ((x-0.5) **2))
+0.5*np.exp(-40* ((x+0.5) **2))
)
The text was updated successfully, but these errors were encountered:
The 1D Triple Well potential
kooplearn/kooplearn/datasets/stochastic.py
Line 338 in ca71864
is bugged as:
.npz
resource files are not being included in thepip
installer, and should be loaded usingimportlib.resources
kooplearn/kooplearn/datasets/stochastic.py
Line 399 in ca71864
The text was updated successfully, but these errors were encountered: