28 references to LoadTensorFlowModel
DnnAnalyzer (1)
DnnAnalyzer.cs (1)
32
var tensorFlowModel = mlContext.Model.
LoadTensorFlowModel
(modelPath);
Microsoft.ML.Samples (2)
Dynamic\TensorFlow\ImageClassification.cs (1)
42
using var model = mlContext.Model.
LoadTensorFlowModel
(modelLocation);
Dynamic\TensorFlow\TextClassification.cs (1)
63
using var tensorFlowModel = mlContext.Model.
LoadTensorFlowModel
(
Microsoft.ML.Samples.GPU (2)
docs\samples\Microsoft.ML.Samples\Dynamic\TensorFlow\ImageClassification.cs (1)
42
using var model = mlContext.Model.
LoadTensorFlowModel
(modelLocation);
docs\samples\Microsoft.ML.Samples\Dynamic\TensorFlow\TextClassification.cs (1)
63
using var tensorFlowModel = mlContext.Model.
LoadTensorFlowModel
(
Microsoft.ML.TensorFlow.Tests (23)
TensorFlowEstimatorTests.cs (6)
81
using var model = ML.Model.
LoadTensorFlowModel
(modelFile);
123
using var model = ML.Model.
LoadTensorFlowModel
(modelFile);
165
.Append(ML.Model.
LoadTensorFlowModel
(modelLocation).ScoreTensorFlowModel("Output", "Input"));
223
.Append(ML.Model.
LoadTensorFlowModel
(modelLocation).ScoreTensorFlowModel("Output", "Input"));
290
using TensorFlowModel model1 = context.Model.
LoadTensorFlowModel
(modelFile1);
291
using TensorFlowModel model2 = context.Model.
LoadTensorFlowModel
(modelFile2);
TensorflowTests.cs (17)
152
.Append(_mlContext.Model.
LoadTensorFlowModel
(modelLocation).ScoreTensorFlowModel("Output", "Input"))
200
using var tfModel = _mlContext.Model.
LoadTensorFlowModel
(modelLocation);
292
using var tfModel = _mlContext.Model.
LoadTensorFlowModel
(modelLocation);
414
using var tfModel = _mlContext.Model.
LoadTensorFlowModel
(modelLocation);
511
using var tfModel = _mlContext.Model.
LoadTensorFlowModel
(modelLocation);
557
using var tfModel = _mlContext.Model.
LoadTensorFlowModel
(modelLocation);
670
.Append(_mlContext.Model.
LoadTensorFlowModel
("mnist_model/frozen_saved_model.pb").ScoreTensorFlowModel(new[] { "Softmax", "dense/Relu" }, new[] { "Placeholder", "reshape_input" }))
894
.Append(_mlContext.Model.
LoadTensorFlowModel
("mnist_model").ScoreTensorFlowModel(new[] { "Softmax", "dense/Relu" }, new[] { "Placeholder", "reshape_input" }))
1003
using var tensorFlowModel = _mlContext.Model.
LoadTensorFlowModel
(modelLocation);
1062
using var tensorFlowModel = _mlContext.Model.
LoadTensorFlowModel
(modelLocation);
1106
using var tensorFlowModel = _mlContext.Model.
LoadTensorFlowModel
(modelLocation);
1162
.Append(_mlContext.Model.
LoadTensorFlowModel
(modelLocation).ScoreTensorFlowModel("Output", "Input"))
1237
using TensorFlowModel model = _mlContext.Model.
LoadTensorFlowModel
(modelLocation);
1292
using var pipelineModel = _mlContext.Model.
LoadTensorFlowModel
(modelLocation).ScoreTensorFlowModel(new[] { "Prediction/Softmax" }, new[] { "Features" })
1346
using var tensorFlowModel = _mlContext.Model.
LoadTensorFlowModel
(@"model_string_test");
1373
using var tensorFlowModel = _mlContext.Model.
LoadTensorFlowModel
(@"model_primitive_input_test");
2063
using (var tfModel = _mlContext.Model.
LoadTensorFlowModel
(modelLocation))