(self)
| 397 | ) |
| 398 | |
| 399 | def test_information_density(self): |
| 400 | for n_samples in range(1, 10): |
| 401 | for n_dim in range(1, 10): |
| 402 | X_pool = np.random.rand(n_samples, n_dim) |
| 403 | similarities = modAL.density.information_density(X_pool) |
| 404 | np.testing.assert_equal(len(similarities), n_samples) |
| 405 | |
| 406 | |
| 407 | class TestDisagreements(unittest.TestCase): |
nothing calls this directly
no outgoing calls
no test coverage detected