Ejemplo n.º 1
0
 def __init__(self):
     self.graph = c_api.TF_NewGraph()
     # Note: when we're destructing the global context (i.e when the process is
     # terminating) we may have already deleted other modules. By capturing the
     # DeleteGraph function here, we retain the ability to cleanly destroy the
     # graph at shutdown, which satisfies leak checkers.
     self.deleter = c_api.TF_DeleteGraph
Ejemplo n.º 2
0
 def __init__(self):
     self.graph = c_api.TF_NewGraph()