8 references to Prediction
Microsoft.ML.IntegrationTests (8)
Prediction.cs (8)
57
var engine = mlContext.Model.CreatePredictionEngine<TweetSentiment,
Prediction
>(model);
58
var
pr = engine.Predict(new TweetSentiment() { SentimentText = "Good Bad job" });
70
var newEngine = mlContext.Model.CreatePredictionEngine<TweetSentiment,
Prediction
>(newModel);
89
var engine = mlContext.Model.CreatePredictionEngine<TypeTestData,
Prediction
>(model);
90
var
pr = engine.Predict(randomDataPoint);
94
var newEngine = mlContext.Model.CreatePredictionEngine<TypeTestData,
Prediction
>(newModel);
110
var engine = mlContext.Model.CreatePredictionEngine<TypeTestData,
Prediction
>(model, new PredictionEngineOptions());
130
engine = mlContext.Model.CreatePredictionEngine<TypeTestData,
Prediction
>(model, options);