Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,10 @@ public TrialResult Run(TrialSettings settings)
var models = new List<ITransformer>();
foreach (var split in datasetSplit)
{
// a work-around to fix issue https://github.com/dotnet/machinelearning-modelbuilder/issues/2718
// where the root cause is the shape of deep learning model is determined by the first time when this model is trained
// therefore, the deep learning model can't be retrained using the same pipeline
mlnetPipeline = _pipeline.BuildFromOption(_mLContext, parameter);
var model = mlnetPipeline.Fit(split.TrainSet);
var eval = model.Transform(split.TestSet);
metrics.Add(_metricManager.Evaluate(_mLContext, eval));
Expand Down