2 instantiations of TensorFlowEstimator
Microsoft.ML.TensorFlow (2)
TensorFlowModel.cs (2)
73=> new TensorFlowEstimator(_env, new[] { outputColumnName }, new[] { inputColumnName }, this, addBatchDimensionInput); 90=> new TensorFlowEstimator(_env, outputColumnNames, inputColumnNames, this, addBatchDimensionInput);
17 references to TensorFlowEstimator
Microsoft.ML.Samples (1)
Dynamic\TensorFlow\ImageClassification.cs (1)
43var pipeline = model.ScoreTensorFlowModel(
Microsoft.ML.Samples.GPU (1)
docs\samples\Microsoft.ML.Samples\Dynamic\TensorFlow\ImageClassification.cs (1)
43var pipeline = model.ScoreTensorFlowModel(
Microsoft.ML.TensorFlow (12)
TensorflowCatalog.cs (2)
16/// <see cref="TensorFlowEstimator"/> using <see cref="TensorFlowModel.ScoreTensorFlowModel(string, string, bool)"/>. 41/// <see cref="TensorFlowEstimator"/> using <see cref="TensorFlowModel.ScoreTensorFlowModel(string, string, bool)"/>.
TensorFlowModel.cs (3)
15/// creation of <see cref="TensorFlowEstimator"/> object. 72public TensorFlowEstimator ScoreTensorFlowModel(string outputColumnName, string inputColumnName, bool addBatchDimensionInput = false) 89public TensorFlowEstimator ScoreTensorFlowModel(string[] outputColumnNames, string[] inputColumnNames, bool addBatchDimensionInput = false)
TensorflowTransform.cs (7)
26typeof(TensorFlowEstimator.Options), typeof(SignatureDataTransform), TensorFlowTransformer.UserName, TensorFlowTransformer.ShortName)] 190internal static IDataTransform Create(IHostEnvironment env, TensorFlowEstimator.Options options, IDataView input) 201internal TensorFlowTransformer(IHostEnvironment env, TensorFlowEstimator.Options options, IDataView input) 206internal TensorFlowTransformer(IHostEnvironment env, TensorFlowEstimator.Options options, TensorFlowModel tensorFlowModel, IDataView input, IDataView validationSet = null) 288bool addBatchDimensionInput, int batchSize = 1, TensorFlowEstimator.Options options = null, IDataView input = null, bool treatOutputAsBatched = true) 797internal static CommonOutputs.TransformOutput TensorFlowScorer(IHostEnvironment env, TensorFlowEstimator.Options input) 1003_host = Contracts.CheckRef(env, nameof(env)).Register(nameof(TensorFlowEstimator));
Microsoft.ML.TensorFlow.Tests (3)
TensorFlowEstimatorTests.cs (2)
82var pipe = model.ScoreTensorFlowModel(new[] { "c" }, new[] { "a", "b" }); 124var est = model.ScoreTensorFlowModel(new[] { "c" }, new[] { "a", "b" });
TensorflowTests.cs (1)
1379var pipeline = tensorFlowModel.ScoreTensorFlowModel(