我想使用此Dataset在使用ML.Net的.NET Core中创建和训练模型
但是,当我尝试根据此sample使用创建的模型进行预测时,我无法使用.tif(或tiff)文件。
var probs = model.Predict(sample).PredictedLabels;
抛出此异常:
System.ArgumentException: 'A Graphics object cannot be created from an image that has an indexed pixel format.
Arg_ParamName_Name'
我应该将图像转换为.jpg还是有某种方法可以将转换添加到管道中?