Skip to content

Commit 7042bd6

Browse files
committed
Use standard Müller-Brown potential in notebook
1 parent b93c899 commit 7042bd6

File tree

2 files changed

+251
-182
lines changed

2 files changed

+251
-182
lines changed

notebooks/models.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ class MLPfull(nn.Module):
3939
A: float
4040
B: float
4141
ndim: int
42-
xi_0: float = 1e-2
42+
xi_0: float = 2.5e-2
4343
@nn.compact
4444
def __call__(self, t):
4545
t = t/self.T
@@ -74,7 +74,7 @@ class MLPdiag(nn.Module):
7474
A: float
7575
B: float
7676
ndim: int
77-
xi_0: float = 1e-2
77+
xi_0: float = 2.5e-2
7878
@nn.compact
7979
def __call__(self, t):
8080
t = t/self.T

0 commit comments

Comments
 (0)