diff options
author | Vee9ahd1 <[email protected]> | 2019-08-21 22:22:10 -0400 |
---|---|---|
committer | Vee9ahd1 <[email protected]> | 2019-08-21 22:22:10 -0400 |
commit | ed90828eb9712de21ecf7bfa5dfe88bd27672a0b (patch) | |
tree | 71139430123c3192a9a2ca42554997783dceae41 /test/latent_space_test.py | |
parent | 59d20e4ced6303099645f44ae9bc1c3abe4c77af (diff) |
added test for circle function... which doesn't get used yet
Diffstat (limited to 'test/latent_space_test.py')
-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() |