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
@@ -102,9 +102,9 @@ public SchemaShape GetOutputSchema(SchemaShape inputSchema)
102
102
}
103
103
104
104
/// <summary>
105
-
/// Given an estimator, return a wrapping object that will call a delegate once <see cref="IEstimator{TTransformer}.Fit(IDataView, IDataView, IPredictor)"/>
105
+
/// Given an estimator, return a wrapping object that will call a delegate once <see cref="IEstimator{TTransformer}.Fit(IDataView)"/>
106
106
/// is called. It is often important for an estimator to return information about what was fit, which is why the
107
-
/// <see cref="IEstimator{TTransformer}.Fit(IDataView, IDataView, IPredictor)"/> method returns a specifically typed object, rather than just a general
107
+
/// <see cref="IEstimator{TTransformer}.Fit(IDataView)"/> method returns a specifically typed object, rather than just a general
108
108
/// <see cref="ITransformer"/>. However, at the same time, <see cref="IEstimator{TTransformer}"/> are often formed into pipelines
109
109
/// with many objects, so we may need to build a chain of estimators via <see cref="EstimatorChain{TLastTransformer}"/> where the
110
110
/// estimator for which we want to get the transformer is buried somewhere in this chain. For that scenario, we can through this
@@ -113,7 +113,7 @@ public SchemaShape GetOutputSchema(SchemaShape inputSchema)
113
113
/// <typeparam name="TTransformer">The type of <see cref="ITransformer"/> returned by <paramref name="estimator"/></typeparam>
114
114
/// <param name="estimator">The estimator to wrap</param>
115
115
/// <param name="onFit">The delegate that is called with the resulting <typeparamref name="TTransformer"/> instances once
116
-
/// <see cref="IEstimator{TTransformer}.Fit(IDataView, IDataView, IPredictor)"/> is called. Because <see cref="IEstimator{TTransformer}.Fit(IDataView, IDataView, IPredictor)"/>
116
+
/// <see cref="IEstimator{TTransformer}.Fit(IDataView)"/> is called. Because <see cref="IEstimator{TTransformer}.Fit(IDataView)"/>
117
117
/// may be called multiple times, this delegate may also be called multiple times.</param>
118
118
/// <returns>A wrapping estimator that calls the indicated delegate whenever fit is called</returns>
0 commit comments