11 references to LoadTensorFlowModel
Microsoft.ML.TensorFlow (10)
TensorflowCatalog.cs (2)
37
=> TensorFlowUtils.
LoadTensorFlowModel
(CatalogUtils.GetEnvironment(catalog), modelLocation);
63
=> TensorFlowUtils.
LoadTensorFlowModel
(CatalogUtils.GetEnvironment(catalog), modelLocation, treatOutputAsBatched);
TensorflowTransform.cs (7)
95
/// It is useful in a situation where user has already loaded TensorFlow model using <see cref="TensorFlowUtils.
LoadTensorFlowModel
(IHostEnvironment, string, bool)"/> for inspecting model schema.
98
/// <param name="tfModelInfo"> <see cref="TensorFlowModel"/> object created with <see cref="TensorFlowUtils.
LoadTensorFlowModel
(IHostEnvironment, string, bool)"/>.</param>
113
/// It is useful in a situation where user has already loaded TensorFlow model using <see cref="TensorFlowUtils.
LoadTensorFlowModel
(IHostEnvironment, string, bool)"/> for inspecting model schema.
116
/// <param name="tfModelInfo"> <see cref="TensorFlowModel"/> object created with <see cref="TensorFlowUtils.
LoadTensorFlowModel
(IHostEnvironment, string, bool)"/>.</param>
202
: this(env, options, TensorFlowUtils.
LoadTensorFlowModel
(env, options.ModelLocation), input)
987
: this(env, outputColumnNames, inputColumnNames, TensorFlowUtils.
LoadTensorFlowModel
(env, modelLocation), addBatchDimensionInput)
997
: this(env, options, TensorFlowUtils.
LoadTensorFlowModel
(env, options.ModelLocation, options.TreatOutputAsBatched))
TensorflowUtils.cs (1)
132
using var model =
LoadTensorFlowModel
(env, modelPath, treatOutputAsBatched);
Microsoft.ML.TensorFlow.Tests (1)
TensorFlowEstimatorTests.cs (1)
241
using var tensorFlowModel = TensorFlowUtils.
LoadTensorFlowModel
(mlContext, modelLocation);