| File: SweepableEstimator\Estimators\TextClassification.cs | Web Access |
| Project: src\src\Microsoft.ML.AutoML\Microsoft.ML.AutoML.csproj (Microsoft.ML.AutoML) |
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. using System; using System.Collections.Generic; using System.Reflection; using System.Text; using Microsoft.ML.TorchSharp; namespace Microsoft.ML.AutoML.CodeGen { internal partial class TextClassificationMulti { public override IEstimator<ITransformer> BuildFromOption(MLContext context, TextClassificationOption param) { return context.MulticlassClassification.Trainers.TextClassification( labelColumnName: param.LabelColumnName, sentence1ColumnName: param.Sentence1ColumnName, scoreColumnName: param.ScoreColumnName, sentence2ColumnName: param.Sentence2ColumnName, outputColumnName: param.OutputColumnName, batchSize: param.BatchSize, maxEpochs: param.MaxEpochs, architecture: param.Architecture); } } }