10000 fix issue #2718 from model builder by LittleLittleCloud · Pull Request #6768 · dotnet/machinelearning · GitHub
[go: up one dir, main page]

Skip to content

fix issue #2718 from model builder #6768

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jul 24, 2023
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
0