We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b411b4c commit a7c4253Copy full SHA for a7c4253
1 file changed
nmpath/nmm.py
@@ -151,7 +151,8 @@ def fit(self):
151
markov_cmatrix[traj[i - lag], traj[i]] += 1.0
152
153
nm_tmatrix = normalize_markov_matrix(nm_cmatrix)
154
- markov_tmatrix = transition_matrix(markov_cmatrix, self.reversible)
+ markov_tmatrix = normalize_markov_matrix(markov_cmatrix, reversible=True)
155
+ #markov_tmatrix = transition_matrix(markov_cmatrix, self.reversible)
156
157
self.nm_tmatrix = nm_tmatrix
158
0 commit comments