In [ ]:
%matplotlib inline
In [ ]:
# Code source: Andrew Heusser
# License: MIT
import hypertools as hyp
import numpy as np
data, labels = hyp.tools.load('weights', align=True)
group1 = np.mean(data[:17], 0)
group2 = np.mean(data[18:], 0)
hyp.plot([group1, group2], animate=True, save_path='animation.mp4')