I did exactly as this documentation says
I have this code to predict multiple input data (ML.Net 1.7)
var predEngine = mlContext.Model.CreatePredictionEngine<ClusterData,
SentimentPrediction>(model);
var batchData = mlContext.Data.LoadFromEnumerable(listBatch);
IDataView predictions = model.Transform(batchData);
// Get Predictions
float[] scoreColumn = predictions.GetColumn<float>("Score").ToArray();
And I get this error in the last line:
error CS1061: 'IDataView' does not contain a definition for 'GetColumn' and
no accessible extension method 'GetColumn' accepting a first argument of type 'IDataView'
could be found (are you missing a using directive or an assembly reference?)