File tree 1 file changed +11
-3
lines changed
src/Microsoft.ML.Data/Training
1 file changed +11
-3
lines changed Original file line number Diff line number Diff line change 4
4
5
5
namespace Microsoft . ML . Trainers
6
6
{
7
- public interface ITrainerEstimator < out TTransformer , out TPredictor > : IEstimator < TTransformer >
8
- where TTransformer : ISingleFeaturePredictionTransformer < TPredictor >
9
- where TPredictor : class
7
+ /// <summary>
8
+ /// Interface for the Trainer Estimator.
9
+ /// </summary>
10
+ /// <typeparam name="TTransformer">The type of the transformer returned by the estimator.</typeparam>
11
+ /// <typeparam name="TModel">The type of the model parameters.</typeparam>
12
+ public interface ITrainerEstimator < out TTransformer , out TModel > : IEstimator < TTransformer >
13
+ where TTransformer : ISingleFeaturePredictionTransformer < TModel >
14
+ where TModel : class
10
15
{
16
+ /// <summary>
17
+ /// Gets the <see cref="TrainerInfo"/> information about the trainer.
18
+ /// </summary>
11
19
TrainerInfo Info { get ; }
12
20
}
13
21
}
You can’t perform that action at this time.
0 commit comments