Skip to content
This repository has been archived by the owner on Sep 11, 2023. It is now read-only.

Commit

Permalink
[thermo, subset] fixing ThermoMSM
Browse files Browse the repository at this point in the history
  • Loading branch information
cwehmeyer committed Sep 6, 2016
1 parent cc1a754 commit 3ee3472
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions pyemma/thermo/models/memm.py
Original file line number Diff line number Diff line change
Expand Up @@ -97,6 +97,15 @@ def stationary_distribution(self):
@property
def pi_full_state(self):
return self.stationary_distribution_full_state

@_map_to_full_state(default_arg=_np.inf)
def eigenvectors_right(self, k=None):
return super(ThermoMSM, self).eigenvectors_right(k=k)

@_map_to_full_state(default_arg=_np.inf, extend_along_axis=1)
def eigenvectors_left(self, k=None):
return super(ThermoMSM, self).eigenvectors_left(k=k)



class MEMM(_MultiThermModel):
Expand Down

0 comments on commit 3ee3472

Please sign in to comment.