LICENSE.md
README.rst
setup.py
geomstats/__init__.py
geomstats/_logging.py
geomstats/algebra_utils.py
geomstats/errors.py
geomstats/integrator.py
geomstats/tests.py
geomstats/vectorization.py
geomstats/visualization.py
geomstats.egg-info/PKG-INFO
geomstats.egg-info/SOURCES.txt
geomstats.egg-info/dependency_links.txt
geomstats.egg-info/not-zip-safe
geomstats.egg-info/requires.txt
geomstats.egg-info/top_level.txt
geomstats/_backend/__init__.py
geomstats/_backend/constants.py
geomstats/_backend/autograd/__init__.py
geomstats/_backend/autograd/autodiff.py
geomstats/_backend/autograd/common.py
geomstats/_backend/autograd/linalg.py
geomstats/_backend/autograd/random.py
geomstats/_backend/numpy/__init__.py
geomstats/_backend/numpy/autodiff.py
geomstats/_backend/numpy/common.py
geomstats/_backend/numpy/linalg.py
geomstats/_backend/numpy/random.py
geomstats/_backend/pytorch/__init__.py
geomstats/_backend/pytorch/autodiff.py
geomstats/_backend/pytorch/linalg.py
geomstats/_backend/pytorch/random.py
geomstats/_backend/tensorflow/__init__.py
geomstats/_backend/tensorflow/autodiff.py
geomstats/_backend/tensorflow/linalg.py
geomstats/_backend/tensorflow/random.py
geomstats/datasets/__init__.py
geomstats/datasets/prepare_emg_data.py
geomstats/datasets/prepare_graph_data.py
geomstats/datasets/utils.py
geomstats/geometry/__init__.py
geomstats/geometry/_bch_coefficients.py
geomstats/geometry/_hyperbolic.py
geomstats/geometry/_my_manifold.py
geomstats/geometry/base.py
geomstats/geometry/connection.py
geomstats/geometry/discrete_curves.py
geomstats/geometry/euclidean.py
geomstats/geometry/fiber_bundle.py
geomstats/geometry/full_rank_correlation_matrices.py
geomstats/geometry/full_rank_matrices.py
geomstats/geometry/general_linear.py
geomstats/geometry/graphspace.py
geomstats/geometry/grassmannian.py
geomstats/geometry/heisenberg.py
geomstats/geometry/hyperbolic.py
geomstats/geometry/hyperboloid.py
geomstats/geometry/hypersphere.py
geomstats/geometry/invariant_metric.py
geomstats/geometry/landmarks.py
geomstats/geometry/lie_algebra.py
geomstats/geometry/lie_group.py
geomstats/geometry/lower_triangular_matrices.py
geomstats/geometry/manifold.py
geomstats/geometry/matrices.py
geomstats/geometry/minkowski.py
geomstats/geometry/poincare_ball.py
geomstats/geometry/poincare_half_space.py
geomstats/geometry/poincare_polydisk.py
geomstats/geometry/positive_lower_triangular_matrices.py
geomstats/geometry/pre_shape.py
geomstats/geometry/product_manifold.py
geomstats/geometry/product_riemannian_metric.py
geomstats/geometry/pullback_metric.py
geomstats/geometry/quotient_metric.py
geomstats/geometry/rank_k_psd_matrices.py
geomstats/geometry/riemannian_metric.py
geomstats/geometry/skew_symmetric_matrices.py
geomstats/geometry/spd_matrices.py
geomstats/geometry/special_euclidean.py
geomstats/geometry/special_orthogonal.py
geomstats/geometry/stiefel.py
geomstats/geometry/sub_riemannian_metric.py
geomstats/geometry/symmetric_matrices.py
geomstats/learning/__init__.py
geomstats/learning/_template.py
geomstats/learning/agglomerative_hierarchical_clustering.py
geomstats/learning/expectation_maximization.py
geomstats/learning/exponential_barycenter.py
geomstats/learning/frechet_mean.py
geomstats/learning/geodesic_regression.py
geomstats/learning/kalman_filter.py
geomstats/learning/kernel_density_estimation_classifier.py
geomstats/learning/kmeans.py
geomstats/learning/kmedoids.py
geomstats/learning/knn.py
geomstats/learning/mdm.py
geomstats/learning/online_kmeans.py
geomstats/learning/pca.py
geomstats/learning/preprocessing.py
geomstats/learning/radial_kernel_functions.py
geomstats/learning/riemannian_mean_shift.py
geomstats/learning/wrapped_gaussian_process.py
tests/__init__.py
tests/conftest.py
tests/data_generation.py
tests/helper.py
tests/parametrizers.py
tests/test_notebooks.py
tests/tests_geomstats/__init__.py
tests/tests_geomstats/test__my_manifold.py
tests/tests_geomstats/test_agglomerative_hierarchical_clustering.py
tests/tests_geomstats/test_algebra_utils.py
tests/tests_geomstats/test_autodiff.py
tests/tests_geomstats/test_backends.py
tests/tests_geomstats/test_beta.py
tests/tests_geomstats/test_categorical.py
tests/tests_geomstats/test_connection.py
tests/tests_geomstats/test_datasets.py
tests/tests_geomstats/test_dirichlet.py
tests/tests_geomstats/test_discrete_curves.py
tests/tests_geomstats/test_errors.py
tests/tests_geomstats/test_estimators.py
tests/tests_geomstats/test_euclidean.py
tests/tests_geomstats/test_examples.py
tests/tests_geomstats/test_expectation_maximization.py
tests/tests_geomstats/test_exponential_barycenter.py
tests/tests_geomstats/test_frechet_mean.py
tests/tests_geomstats/test_full_rank_correlation_matrices.py
tests/tests_geomstats/test_full_rank_matrices.py
tests/tests_geomstats/test_general_linear.py
tests/tests_geomstats/test_geodesic_regression.py
tests/tests_geomstats/test_graphspace.py
tests/tests_geomstats/test_grassmannian.py
tests/tests_geomstats/test_heisenberg.py
tests/tests_geomstats/test_hyperbolic.py
tests/tests_geomstats/test_hyperbolic_coords.py
tests/tests_geomstats/test_hypersphere.py
tests/tests_geomstats/test_integrator.py
tests/tests_geomstats/test_invariant_metric.py
tests/tests_geomstats/test_kalman_filter.py
tests/tests_geomstats/test_kernel_density_estimation_classifier.py
tests/tests_geomstats/test_knn.py
tests/tests_geomstats/test_landmarks.py
tests/tests_geomstats/test_lie_algebra.py
tests/tests_geomstats/test_lognormal.py
tests/tests_geomstats/test_lower_triangular_matrices.py
tests/tests_geomstats/test_matrices.py
tests/tests_geomstats/test_mdm.py
tests/tests_geomstats/test_minkowski.py
tests/tests_geomstats/test_normal.py
tests/tests_geomstats/test_online_kmeans.py
tests/tests_geomstats/test_pca.py
tests/tests_geomstats/test_poincare_ball.py
tests/tests_geomstats/test_poincare_half_space.py
tests/tests_geomstats/test_poincare_polydisk.py
tests/tests_geomstats/test_positive_lower_triangular_matrices.py
tests/tests_geomstats/test_pre_shape.py
tests/tests_geomstats/test_prepare_emg_data.py
tests/tests_geomstats/test_prepare_graph_data.py
tests/tests_geomstats/test_preprocessing.py
tests/tests_geomstats/test_product_manifold.py
tests/tests_geomstats/test_pullback_metric.py
tests/tests_geomstats/test_quotient_metric.py
tests/tests_geomstats/test_radial_kernel_functions.py
tests/tests_geomstats/test_rank_k_psd_matrices.py
tests/tests_geomstats/test_riemannian_kmeans.py
tests/tests_geomstats/test_riemannian_kmedoids.py
tests/tests_geomstats/test_riemannian_mean_shift.py
tests/tests_geomstats/test_riemannian_metric.py
tests/tests_geomstats/test_skew_symmetric_matrices.py
tests/tests_geomstats/test_spd_matrices.py
tests/tests_geomstats/test_special_euclidean.py
tests/tests_geomstats/test_special_euclidean2.py
tests/tests_geomstats/test_special_euclidean3.py
tests/tests_geomstats/test_special_orthogonal.py
tests/tests_geomstats/test_special_orthogonal2.py
tests/tests_geomstats/test_special_orthogonal3.py
tests/tests_geomstats/test_stiefel.py
tests/tests_geomstats/test_sub_riemannian_metric.py
tests/tests_geomstats/test_symmetric_matrices.py
tests/tests_geomstats/test_vectorization.py
tests/tests_geomstats/test_visualization.py
tests/tests_geomstats/test_wrapped_gaussian_process.py