9 references to MNISTPrediction
Microsoft.ML.TensorFlow.Tests (9)
TensorflowTests.cs (9)
682
var predictFunction = _mlContext.Model.CreatePredictionEngine<MNISTData,
MNISTPrediction
>(trainedModel);
684
var
onePrediction = predictFunction.Predict(oneSample);
732
var predictionFunction = _mlContext.Model.CreatePredictionEngine<MNISTData,
MNISTPrediction
>(trainedModel);
735
var
onePrediction = predictionFunction.Predict(oneSample);
856
var predictFunction = _mlContext.Model.CreatePredictionEngine<MNISTData,
MNISTPrediction
>(trainedModel);
860
var
prediction = predictFunction.Predict(oneSample);
908
var predictFunction = _mlContext.Model.CreatePredictionEngine<MNISTData,
MNISTPrediction
>(trainedModel);
910
var
onePrediction = predictFunction.Predict(oneSample);
967
private int GetMaxIndexForOnePrediction(
MNISTPrediction
onePrediction)