3 instantiations of LaplacianKernel
Microsoft.ML.Tests (2)
Transformers\RffTests.cs (2)
56new ApproximatedKernelMappingEstimator.ColumnOptions("RffB", 10, true, "A", new LaplacianKernel()) 102new ApproximatedKernelMappingEstimator.ColumnOptions("RffB", 10, true, "A", new LaplacianKernel())
Microsoft.ML.Transforms (1)
FourierDistributionSampler.cs (1)
208public KernelBase CreateComponent(IHostEnvironment env) => new LaplacianKernel(env, this);
7 references to LaplacianKernel
Microsoft.ML.Transforms (7)
FourierDistributionSampler.cs (6)
17[assembly: LoadableClass(typeof(LaplacianKernel), typeof(LaplacianKernel.Options), typeof(SignatureKernelBase), 18"Laplacian Kernel", LaplacianKernel.LoadName, "Laplacian")] 25[assembly: LoadableClass(typeof(LaplacianKernel.RandomNumberGenerator), null, typeof(SignatureLoadModel), 26"Laplacian Fourier Sampler Executor", "LaplacianSamplerExecutor", LaplacianKernel.RandomNumberGenerator.LoaderSignature)] 49/// its inputs. The <see cref="GaussianKernel"/> depends on the L2 distance, and the <see cref="LaplacianKernel"/> depends
KernelCatalog.cs (1)
31/// are <see cref="GaussianKernel"/> and <see cref="LaplacianKernel"/>.</param>