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