Quick question - I'm running into an issue with the Model class. When I instantiate a Model with a MaximumLikelihoodMSM, the call to Model.micro_ofcluster() raises the following error from line
227: micro_ofcluster[self._active_set] = np.arange(len(self._active_set)).
In particular, the error seems to come from the call to Model._active_set which triggers:
AttributeError: 'MaximumLikelihoodMSM' object has no attribute 'count_model'
Looking through the deeptime repo, it does not look like the MaximumLikelihoodMSM ever sets this attribute.
Hi,
Quick question - I'm running into an issue with the
Model
class. When I instantiate a Model with a MaximumLikelihoodMSM, the call toModel.micro_ofcluster()
raises the following error from line227: micro_ofcluster[self._active_set] = np.arange(len(self._active_set))
.In particular, the error seems to come from the call to
Model._active_set
which triggers:AttributeError: 'MaximumLikelihoodMSM' object has no attribute 'count_model'
Looking through the deeptime repo, it does not look like the MaximumLikelihoodMSM ever sets this attribute.