1 write to _options
Microsoft.ML.TensorFlow (1)
TensorflowTransform.cs (1)
1004
_options
= options;
15 references to _options
Microsoft.ML.TensorFlow (15)
TensorflowTransform.cs (15)
1007
_options
.TreatOutputAsBatched = tensorFlowModel.TreatOutputAsBatched;
1009
var inputTuple = TensorFlowTransformer.GetInputInfo(_host, tensorFlowModel.Session,
_options
.InputColumns);
1011
var outputTuple = TensorFlowTransformer.GetOutputInfo(_host, tensorFlowModel.Session,
_options
.OutputColumns,
_options
.TreatOutputAsBatched);
1035
for (var i = 0; i <
_options
.InputColumns.Length; i++)
1037
var input =
_options
.InputColumns[i];
1044
for (var i = 0; i <
_options
.OutputColumns.Length; i++)
1046
resultDic[
_options
.OutputColumns[i]] = new SchemaShape.Column(
_options
.OutputColumns[i],
1061
_transformer = new TensorFlowTransformer(_host, _tensorFlowModel.Session,
_options
.OutputColumns,
_options
.InputColumns,
1062
IsSavedModel(_host,
_options
.ModelLocation) ?
_options
.ModelLocation : null, false,
_options
.AddBatchDimensionInputs, treatOutputAsBatched:
_options
.TreatOutputAsBatched);