diff options
Diffstat (limited to 'test')
-rw-r--r-- | test/latent_space_test.py | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/test/latent_space_test.py b/test/latent_space_test.py index d05eb78..4719a5d 100644 --- a/test/latent_space_test.py +++ b/test/latent_space_test.py @@ -170,6 +170,13 @@ class TestLatentSpace(unittest.TestCase): batch_size=batch_size, interp_method='cubic') + def test_circle(self): + n_vector = 100 + n_label = 1000 + center = create_random_keyframe(n_vector, n_label)['vector'] + normal = create_random_keyframe(n_vector, n_label)['vector'] + latent_space.circle([center, normal], step_count) + if __name__ == '__main__': unittest.main() |