1 write to Session
Microsoft.ML.TensorFlow (1)
TensorflowTransform.cs (1)
298
Session
= session;
11 references to Session
Microsoft.ML.TensorFlow (11)
TensorflowTransform.cs (11)
59
internal Graph Graph =>
Session
.graph;
305
(TFOutputTypes, OutputTypes, TFOutputOperations) = GetOutputInfo(Host,
Session
, Outputs, treatOutputAsBatched);
306
(TFInputTypes, TFInputShapes, TFInputOperations) = GetInputInfo(Host,
Session
, Inputs, batchSize);
457
using (var buffer =
Session
.graph.ToGraphDef(status))
513
if (
Session
?.graph != IntPtr.Zero)
515
Session
.graph.Dispose();
518
if (
Session
!= null &&
Session
!= IntPtr.Zero)
520
Session
.close(); // invoked Dispose()
755
_parent.
Session
.graph.as_default();
756
Runner runner = new Runner(_parent.
Session
, _parent.Inputs.ToArray(), _parent.Outputs.ToArray());