154f3ab678432940308cf390216571318df59202,pyemma/coordinates/tests/test_nystroem_tica.py,TestNystroemTICA_Simple,test_multiple,#TestNystroemTICA_Simple#,53
Before Change
def test_multiple(self):
t = tica_nystroem(data=self.data, lag=1, max_columns=10, nsel=3, initial_columns=np.array([0]))
np.testing.assert_allclose(t._oasis.error, 0, rtol=1e-05, atol=1e-08)
np.testing.assert_allclose(t.cov, self.tica_obj.cov[:, t.column_indices])
np.testing.assert_allclose(t.cov_tau, self.tica_obj.cov_tau[:, t.column_indices])
np.testing.assert_allclose(t.timescales, self.tica_obj.timescales)
After Change
def test_multiple(self):
t = tica_nystroem(data=self.data, lag=1, max_columns=11, nsel=3,
initial_columns=self.initial_columns)
self._compare_tica(t)
def test_multiple_issues_warning(self):
if use_assert_warns:
with self.assertWarns(UserWarning):
In pattern: SUPERPATTERN
Frequency: 3
Non-data size: 3
Instances
Project Name: markovmodel/PyEMMA
Commit Name: 154f3ab678432940308cf390216571318df59202
Time: 2018-02-28
Author: florianlitzinger@users.noreply.github.com
File Name: pyemma/coordinates/tests/test_nystroem_tica.py
Class Name: TestNystroemTICA_Simple
Method Name: test_multiple
Project Name: markovmodel/PyEMMA
Commit Name: 154f3ab678432940308cf390216571318df59202
Time: 2018-02-28
Author: florianlitzinger@users.noreply.github.com
File Name: pyemma/coordinates/tests/test_nystroem_tica.py
Class Name: TestNystroemTICA_Simple
Method Name: test_multiple
Project Name: markovmodel/PyEMMA
Commit Name: 154f3ab678432940308cf390216571318df59202
Time: 2018-02-28
Author: florianlitzinger@users.noreply.github.com
File Name: pyemma/coordinates/tests/test_nystroem_tica.py
Class Name: TestNystroemTICA_Simple
Method Name: test_single_issues_warning
Project Name: markovmodel/PyEMMA
Commit Name: 154f3ab678432940308cf390216571318df59202
Time: 2018-02-28
Author: florianlitzinger@users.noreply.github.com
File Name: pyemma/coordinates/tests/test_nystroem_tica.py
Class Name: TestNystroemTICA_Simple
Method Name: test_single