Esempio n. 1
0
 def test_its_estimated_with_only_ts(self):
     its = ImpliedTimescales(estimator=self.estimator,
                             lags=[1, 2, 3],
                             only_timescales=True,
                             n_jobs=1)
     its.estimate(self.dtraj)
     plot_implied_timescales(its)
Esempio n. 2
0
 def test_its_estimated_with_only_ts_samples(self):
     from pyemma.msm import BayesianMSM
     its = ImpliedTimescales(estimator=BayesianMSM(nsamples=2),
                             lags=[1, 2, 3],
                             only_timescales=True)
     its.estimate(self.dtraj)
     plot_implied_timescales(its)