9 references to MNISTPrediction
Microsoft.ML.TensorFlow.Tests (9)
TensorflowTests.cs (9)
667
var predictFunction = _mlContext.Model.CreatePredictionEngine<MNISTData,
MNISTPrediction
>(trainedModel);
669
var
onePrediction = predictFunction.Predict(oneSample);
717
var predictionFunction = _mlContext.Model.CreatePredictionEngine<MNISTData,
MNISTPrediction
>(trainedModel);
720
var
onePrediction = predictionFunction.Predict(oneSample);
841
var predictFunction = _mlContext.Model.CreatePredictionEngine<MNISTData,
MNISTPrediction
>(trainedModel);
845
var
prediction = predictFunction.Predict(oneSample);
893
var predictFunction = _mlContext.Model.CreatePredictionEngine<MNISTData,
MNISTPrediction
>(trainedModel);
895
var
onePrediction = predictFunction.Predict(oneSample);
952
private int GetMaxIndexForOnePrediction(
MNISTPrediction
onePrediction)