-
Notifications
You must be signed in to change notification settings - Fork 1.9k
Closed
Labels
P0Priority of the issue for triage purpose: IMPORTANT, needs to be fixed right away.Priority of the issue for triage purpose: IMPORTANT, needs to be fixed right away.bugSomething isn't workingSomething isn't working
Description
Several of the image transforms in ML.NET produce intermediate columns of type System.Drawing.Bitmap
Lines 39 to 42 in e5cbca7
| var pipeline = mlContext.Transforms.LoadImages("ImageObject", imagesFolder, "ImagePath") | |
| .Append(mlContext.Transforms.ConvertToGrayscale("Grayscale", "ImageObject")); | |
| var transformedData = pipeline.Fit(data).Transform(data); |
If we try to use schema comprehension to map some intermediate data (e.g. transformedData) to an IEnumerable, we hit an exception when dealing with a column of type System.Drawing.Bitmap
Error: Unhandled Exception: System.ArgumentOutOfRangeException: Could not determine an IDataView type for member ImageObject
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
P0Priority of the issue for triage purpose: IMPORTANT, needs to be fixed right away.Priority of the issue for triage purpose: IMPORTANT, needs to be fixed right away.bugSomething isn't workingSomething isn't working