This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
"""Riemannian k-means on the Grassmann Manifold. | |
Nicolas Guigui, 29/11/2022 | |
""" | |
import geomstats.backend as gs | |
from geomstats.geometry.grassmannian import Grassmannian | |
from geomstats.learning.online_kmeans import OnlineKMeans | |
n_samples = 10 |