Coverage for geometric_kernels/feature_maps/__init__.py: 100%

4 statements  

« prev     ^ index     » next       coverage.py v7.11.3, created at 2025-11-16 21:43 +0000

1""" 

2(Approximate) finite-dimensional feature maps for geometric kernels. 

3 

4A brief introduction into the theory can be found on :doc:`this page 

5</theory/feature_maps>`. 

6""" 

7 

8# noqa: F401 

9from geometric_kernels.feature_maps.base import FeatureMap 

10from geometric_kernels.feature_maps.deterministic import ( 

11 DeterministicFeatureMapCompact, 

12 HodgeDeterministicFeatureMapCompact, 

13) 

14from geometric_kernels.feature_maps.random_phase import ( 

15 RandomPhaseFeatureMapCompact, 

16 RandomPhaseFeatureMapNoncompact, 

17) 

18from geometric_kernels.feature_maps.rejection_sampling import ( 

19 RejectionSamplingFeatureMapHyperbolic, 

20 RejectionSamplingFeatureMapSPD, 

21)