@@ -61,7 +61,7 @@ public FeatureHasher SetCategoricalCols(IEnumerable<string> value) =>
61
61
/// Gets the columns that the <see cref="FeatureHasher"/> should read from and convert into
62
62
/// hashes. This would have been set by SetInputCol.
63
63
/// </summary>
64
- /// <returns>IEnumerable<string>, the input columns</returns>
64
+ /// <returns>List of the input columns, set by SetInputCols </returns>
65
65
public IEnumerable < string > GetInputCols ( ) => ( string [ ] ) _jvmObject . Invoke ( "getInputCols" ) ;
66
66
67
67
/// <summary>
@@ -88,7 +88,7 @@ public FeatureHasher SetInputCols(IEnumerable<string> value) =>
88
88
/// the numFeatures parameter; otherwise the features will not be mapped evenly to the
89
89
/// columns.
90
90
/// </summary>
91
- /// <param name="value">int</param>
91
+ /// <param name="value">int value of number of features </param>
92
92
/// <returns>New <see cref="FeatureHasher"/> object</returns>
93
93
public FeatureHasher SetNumFeatures ( int value ) =>
94
94
WrapAsFeatureHasher ( _jvmObject . Invoke ( "setNumFeatures" , value ) ) ;
@@ -101,8 +101,7 @@ public FeatureHasher SetNumFeatures(int value) =>
101
101
public string GetOutputCol ( ) => ( string ) _jvmObject . Invoke ( "getOutputCol" ) ;
102
102
103
103
/// <summary>
104
- /// The <see cref="FeatureHasher"/> will create a new column in the DataFrame, this is the
105
- /// name of the new column.
104
+ /// Sets the name of the new column in the <see cref="DataFrame"/> created by Transform.
106
105
/// </summary>
107
106
/// <param name="value">The name of the new column which will contain the hash</param>
108
107
/// <returns>New <see cref="FeatureHasher"/> object</returns>
@@ -122,7 +121,7 @@ public DataFrame Transform(DataFrame value) =>
122
121
/// Check transform validity and derive the output schema from the input schema.
123
122
///
124
123
/// This checks for validity of interactions between parameters during Transform and
125
- /// raises an exception if any parameter value is invalid.
124
+ /// raises an exception if any parameter value is invalid.
126
125
///
127
126
/// Typical implementation should first conduct verification on schema change and parameter
128
127
/// validity, including complex parameter interaction checks.
0 commit comments