| File: LbfgsPoissonRegressionRegression.cs | Web Access |
| Project: src\src\Microsoft.ML.AutoML\Microsoft.ML.AutoML.csproj (Microsoft.ML.AutoML) |
using System.Collections.Generic; using Newtonsoft.Json; using SweepableEstimator = Microsoft.ML.AutoML.SweepableEstimator; using Microsoft.ML.AutoML.CodeGen; using ColorsOrder = Microsoft.ML.Transforms.Image.ImagePixelExtractingEstimator.ColorsOrder; using ColorBits = Microsoft.ML.Transforms.Image.ImagePixelExtractingEstimator.ColorBits; using ResizingKind = Microsoft.ML.Transforms.Image.ImageResizingEstimator.ResizingKind; using Anchor = Microsoft.ML.Transforms.Image.ImageResizingEstimator.Anchor; using Microsoft.ML.SearchSpace; namespace Microsoft.ML.AutoML.CodeGen { internal partial class LbfgsPoissonRegressionRegression : SweepableEstimator<LbfgsOption> { public LbfgsPoissonRegressionRegression(LbfgsOption defaultOption, SearchSpace<LbfgsOption> searchSpace = null) { this.TParameter = defaultOption; this.SearchSpace = searchSpace; this.EstimatorType = EstimatorType.LbfgsPoissonRegressionRegression; } internal LbfgsPoissonRegressionRegression() { this.EstimatorType = EstimatorType.LbfgsPoissonRegressionRegression; this.TParameter = new LbfgsOption(); } internal override IEnumerable<string> CSharpUsingStatements { get => new string[] {"using Microsoft.ML;", "using Microsoft.ML.Trainers;", }; } internal override IEnumerable<string> NugetDependencies { get => new string[] {"Microsoft.ML", }; } internal override string FunctionName { get => "Regression.Trainers.LbfgsPoissonRegression"; } } }