@@ -27,9 +27,9 @@ internal AutoCatalog(MLContext context)
2727 /// <para>See <see cref="RegressionExperiment"/> for a more detailed code example of an AutoML regression experiment.</para>
2828 /// <para>An experiment may run for longer than <paramref name="maxExperimentTimeInSeconds"/>.
2929 /// This is because once AutoML starts training an ML.NET model, AutoML lets the
30- /// model train to completion. For instance, if the first model
30+ /// model train to completion. For instance, if the first model
3131 /// AutoML trains takes 4 hours, and the second model trained takes 5 hours,
32- /// but <paramref name="maxExperimentTimeInSeconds"/> was the number of seconds in 6 hours,
32+ /// but <paramref name="maxExperimentTimeInSeconds"/> was the number of seconds in 6 hours,
3333 /// the experiment will run for 4 + 5 = 9 hours (not 6 hours).</para>
3434 /// </remarks>
3535 public RegressionExperiment CreateRegressionExperiment ( uint maxExperimentTimeInSeconds )
@@ -62,9 +62,9 @@ public RegressionExperiment CreateRegressionExperiment(RegressionExperimentSetti
6262 /// <para>See <see cref="BinaryClassificationExperiment"/> for a more detailed code example of an AutoML binary classification experiment.</para>
6363 /// <para>An experiment may run for longer than <paramref name="maxExperimentTimeInSeconds"/>.
6464 /// This is because once AutoML starts training an ML.NET model, AutoML lets the
65- /// model train to completion. For instance, if the first model
65+ /// model train to completion. For instance, if the first model
6666 /// AutoML trains takes 4 hours, and the second model trained takes 5 hours,
67- /// but <paramref name="maxExperimentTimeInSeconds"/> was the number of seconds in 6 hours,
67+ /// but <paramref name="maxExperimentTimeInSeconds"/> was the number of seconds in 6 hours,
6868 /// the experiment will run for 4 + 5 = 9 hours (not 6 hours).</para>
6969 /// </remarks>
7070 public BinaryClassificationExperiment CreateBinaryClassificationExperiment ( uint maxExperimentTimeInSeconds )
@@ -97,9 +97,9 @@ public BinaryClassificationExperiment CreateBinaryClassificationExperiment(Binar
9797 /// <para>See <see cref="MulticlassClassificationExperiment"/> for a more detailed code example of an AutoML multiclass classification experiment.</para>
9898 /// <para>An experiment may run for longer than <paramref name="maxExperimentTimeInSeconds"/>.
9999 /// This is because once AutoML starts training an ML.NET model, AutoML lets the
100- /// model train to completion. For instance, if the first model
100+ /// model train to completion. For instance, if the first model
101101 /// AutoML trains takes 4 hours, and the second model trained takes 5 hours,
102- /// but <paramref name="maxExperimentTimeInSeconds"/> was the number of seconds in 6 hours,
102+ /// but <paramref name="maxExperimentTimeInSeconds"/> was the number of seconds in 6 hours,
103103 /// the experiment will run for 4 + 5 = 9 hours (not 6 hours).</para>
104104 /// </remarks>
105105 public MulticlassClassificationExperiment CreateMulticlassClassificationExperiment ( uint maxExperimentTimeInSeconds )
@@ -136,15 +136,15 @@ public MulticlassClassificationExperiment CreateMulticlassClassificationExperime
136136 /// <returns>Information inferred about the columns in the provided dataset.</returns>
137137 /// <remarks>
138138 /// Infers information about the name, data type, and purpose of each column.
139- /// The returned <see cref="ColumnInferenceResults.TextLoaderOptions" /> can be used to
140- /// instantiate a <see cref="TextLoader" />. The <see cref="TextLoader" /> can be used to
141- /// obtain an <see cref="IDataView"/> that can be fed into an AutoML experiment,
139+ /// The returned <see cref="ColumnInferenceResults.TextLoaderOptions" /> can be used to
140+ /// instantiate a <see cref="TextLoader" />. The <see cref="TextLoader" /> can be used to
141+ /// obtain an <see cref="IDataView"/> that can be fed into an AutoML experiment,
142142 /// or used elsewhere in the ML.NET ecosystem (ie in <see cref="IEstimator{TTransformer}.Fit(IDataView)"/>.
143143 /// The <see cref="ColumnInformation"/> contains the inferred purpose of each column in the dataset.
144144 /// (For instance, is the column categorical, numeric, or text data? Should the column be ignored? Etc.)
145145 /// The <see cref="ColumnInformation"/> can be inspected and modified (or kept as is) and used by an AutoML experiment.
146146 /// </remarks>
147- public ColumnInferenceResults InferColumns ( string path , string labelColumnName = DefaultColumnNames . Label , char ? separatorChar = null , bool ? allowQuoting = null ,
147+ public ColumnInferenceResults InferColumns ( string path , string labelColumnName = DefaultColumnNames . Label , char ? separatorChar = null , bool ? allowQuoting = null ,
148148 bool ? allowSparse = null , bool trimWhitespace = false , bool groupColumns = true )
149149 {
150150 UserInputValidationUtil . ValidateInferColumnsArgs ( path , labelColumnName ) ;
@@ -164,9 +164,9 @@ public ColumnInferenceResults InferColumns(string path, string labelColumnName =
164164 /// <returns>Information inferred about the columns in the provided dataset.</returns>
165165 /// <remarks>
166166 /// Infers information about the name, data type, and purpose of each column.
167- /// The returned <see cref="ColumnInferenceResults.TextLoaderOptions" /> can be used to
168- /// instantiate a <see cref="TextLoader" />. The <see cref="TextLoader" /> can be used to
169- /// obtain an <see cref="IDataView"/> that can be fed into an AutoML experiment,
167+ /// The returned <see cref="ColumnInferenceResults.TextLoaderOptions" /> can be used to
168+ /// instantiate a <see cref="TextLoader" />. The <see cref="TextLoader" /> can be used to
169+ /// obtain an <see cref="IDataView"/> that can be fed into an AutoML experiment,
170170 /// or used elsewhere in the ML.NET ecosystem (ie in <see cref="IEstimator{TTransformer}.Fit(IDataView)"/>.
171171 /// The <see cref="ColumnInformation"/> contains the inferred purpose of each column in the dataset.
172172 /// (For instance, is the column categorical, numeric, or text data? Should the column be ignored? Etc.)
@@ -194,15 +194,15 @@ public ColumnInferenceResults InferColumns(string path, ColumnInformation column
194194 /// <returns>Information inferred about the columns in the provided dataset.</returns>
195195 /// <remarks>
196196 /// Infers information about the name, data type, and purpose of each column.
197- /// The returned <see cref="ColumnInferenceResults.TextLoaderOptions" /> can be used to
198- /// instantiate a <see cref="TextLoader" />. The <see cref="TextLoader" /> can be used to
199- /// obtain an <see cref="IDataView"/> that can be fed into an AutoML experiment,
197+ /// The returned <see cref="ColumnInferenceResults.TextLoaderOptions" /> can be used to
198+ /// instantiate a <see cref="TextLoader" />. The <see cref="TextLoader" /> can be used to
199+ /// obtain an <see cref="IDataView"/> that can be fed into an AutoML experiment,
200200 /// or used elsewhere in the ML.NET ecosystem (ie in <see cref="IEstimator{TTransformer}.Fit(IDataView)"/>.
201201 /// The <see cref="ColumnInformation"/> contains the inferred purpose of each column in the dataset.
202202 /// (For instance, is the column categorical, numeric, or text data? Should the column be ignored? Etc.)
203203 /// The <see cref="ColumnInformation"/> can be inspected and modified (or kept as is) and used by an AutoML experiment.
204204 /// </remarks>
205- public ColumnInferenceResults InferColumns ( string path , uint labelColumnIndex , bool hasHeader = false , char ? separatorChar = null ,
205+ public ColumnInferenceResults InferColumns ( string path , uint labelColumnIndex , bool hasHeader = false , char ? separatorChar = null ,
206206 bool ? allowQuoting = null , bool ? allowSparse = null , bool trimWhitespace = false , bool groupColumns = true )
207207 {
208208 UserInputValidationUtil . ValidateInferColumnsArgs ( path ) ;
0 commit comments