You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/// <param name="outputColumnName">Name of the column resulting from the transformation of <paramref name="inputColumnName"/>.</param>
20
-
/// <param name="inputColumnName">Name of column to transform. If set to <see langword="null"/>, the value of the <paramref name="outputColumnName"/> will be used as source.</param>
21
-
/// <param name="rank">The number of random Fourier features to create.</param>
22
-
/// <param name="useCosAndSinBases">If <see langword="true"/>, use both of cos and sin basis functions to create two features for every random Fourier frequency.
23
-
/// Otherwise, only cos bases would be used.</param>
24
-
/// <param name="generator">Which fourier generator to use.</param>
21
+
/// <param name="inputColumnName">Name of column to transform. If set to <see langword="null"/>,
22
+
/// the value of the <paramref name="outputColumnName"/> will be used as source.
23
+
/// The data type on this column should be a known-sized vector of <see cref="System.Single"/>.</param>
24
+
/// <param name="rank">The dimension of the feature space to map the input to.</param>
25
+
/// <param name="useCosAndSinBases">If <see langword="true"/>, use both of cos and sin basis functions to create
26
+
/// two features for every random Fourier frequency. Otherwise, only cos bases would be used. Note that if set
27
+
/// to <see langword="true"/>, the dimension of the output feature space will be 2*<paramref name="rank"/>.</param>
28
+
/// <param name="generator">The argument that indicates which kernel to use. The two available implementations
29
+
/// are <see cref="GaussianKernel"/> and <see cref="LaplacianKernel"/>.</param>
25
30
/// <param name="seed">The seed of the random number generator for generating the new features (if unspecified, the global random is used).</param>
26
31
/// <example>
27
32
/// <format type="text/markdown">
@@ -41,7 +46,8 @@ public static ApproximatedKernelMappingEstimator ApproximatedKernelMap(this Tran
0 commit comments