9 references to MNISTPrediction
Microsoft.ML.TensorFlow.Tests (9)
TensorflowTests.cs (9)
683
var predictFunction = _mlContext.Model.CreatePredictionEngine<MNISTData,
MNISTPrediction
>(trainedModel);
685
var
onePrediction = predictFunction.Predict(oneSample);
733
var predictionFunction = _mlContext.Model.CreatePredictionEngine<MNISTData,
MNISTPrediction
>(trainedModel);
736
var
onePrediction = predictionFunction.Predict(oneSample);
857
var predictFunction = _mlContext.Model.CreatePredictionEngine<MNISTData,
MNISTPrediction
>(trainedModel);
861
var
prediction = predictFunction.Predict(oneSample);
909
var predictFunction = _mlContext.Model.CreatePredictionEngine<MNISTData,
MNISTPrediction
>(trainedModel);
911
var
onePrediction = predictFunction.Predict(oneSample);
968
private int GetMaxIndexForOnePrediction(
MNISTPrediction
onePrediction)