3 instantiations of GaussianKernel
Microsoft.ML.Samples (1)
Dynamic\Transforms\ApproximatedKernelMap.cs (1)
32"Features", rank: 4, generator: new GaussianKernel(gamma: 0.7f),
Microsoft.ML.Transforms (2)
FourierDistributionSampler.cs (1)
87public KernelBase CreateComponent(IHostEnvironment env) => new GaussianKernel(env, this);
RandomFourierFeaturizing.cs (1)
683Generator = generator ?? new GaussianKernel();
8 references to GaussianKernel
Microsoft.ML.Transforms (8)
FourierDistributionSampler.cs (6)
14[assembly: LoadableClass(typeof(GaussianKernel), typeof(GaussianKernel.Options), typeof(SignatureKernelBase), 15"Gaussian Kernel", GaussianKernel.LoadName, "Gaussian")] 21[assembly: LoadableClass(typeof(GaussianKernel.RandomNumberGenerator), null, typeof(SignatureLoadModel), 22"Gaussian Fourier Sampler Executor", "GaussianSamplerExecutor", GaussianKernel.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>
RandomFourierFeaturizing.cs (1)
45public IComponentFactory<KernelBase> MatrixGenerator = new GaussianKernel.Options();