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"));
222
.Append(ML.Model.
LoadTensorFlowModel
(modelLocation).ScoreTensorFlowModel("Output", "Input"));
288
TensorFlowModel model1 = context.Model.
LoadTensorFlowModel
(modelFile1);
289
TensorFlowModel model2 = context.Model.
LoadTensorFlowModel
(modelFile2);
TensorflowTests.cs (17)
151
.Append(_mlContext.Model.
LoadTensorFlowModel
(modelLocation).ScoreTensorFlowModel("Output", "Input"))
199
using var tfModel = _mlContext.Model.
LoadTensorFlowModel
(modelLocation);
291
using var tfModel = _mlContext.Model.
LoadTensorFlowModel
(modelLocation);
413
using var tfModel = _mlContext.Model.
LoadTensorFlowModel
(modelLocation);
510
using var tfModel = _mlContext.Model.
LoadTensorFlowModel
(modelLocation);
556
using var tfModel = _mlContext.Model.
LoadTensorFlowModel
(modelLocation);
669
.Append(_mlContext.Model.
LoadTensorFlowModel
("mnist_model/frozen_saved_model.pb").ScoreTensorFlowModel(new[] { "Softmax", "dense/Relu" }, new[] { "Placeholder", "reshape_input" }))
893
.Append(_mlContext.Model.
LoadTensorFlowModel
("mnist_model").ScoreTensorFlowModel(new[] { "Softmax", "dense/Relu" }, new[] { "Placeholder", "reshape_input" }))
1002
using var tensorFlowModel = _mlContext.Model.
LoadTensorFlowModel
(modelLocation);
1061
using var tensorFlowModel = _mlContext.Model.
LoadTensorFlowModel
(modelLocation);
1105
using var tensorFlowModel = _mlContext.Model.
LoadTensorFlowModel
(modelLocation);
1161
.Append(_mlContext.Model.
LoadTensorFlowModel
(modelLocation).ScoreTensorFlowModel("Output", "Input"))
1234
using TensorFlowModel model = _mlContext.Model.
LoadTensorFlowModel
(modelLocation);
1289
using var pipelineModel = _mlContext.Model.
LoadTensorFlowModel
(modelLocation).ScoreTensorFlowModel(new[] { "Prediction/Softmax" }, new[] { "Features" })
1343
using var tensorFlowModel = _mlContext.Model.
LoadTensorFlowModel
(@"model_string_test");
1370
using var tensorFlowModel = _mlContext.Model.
LoadTensorFlowModel
(@"model_primitive_input_test");
2060
using (var tfModel = _mlContext.Model.
LoadTensorFlowModel
(modelLocation))