tf.graph_util.import_graph_def
        Imports the graph from graph_def into the current default Graph. (deprecated arguments)
  
tf.graph_util.import_graph_def(
    graph_def,
    input_map=None,
    return_elements=None,
    name=None,
    op_dict=None,
    producer_op_list=None
)
   This function provides a way to import a serialized TensorFlow GraphDef protocol buffer, and extract individual objects in the GraphDef as tf.Tensor and tf.Operation objects. Once extracted, these objects are placed into the current default Graph. See tf.Graph.as_graph_def for a way to create a GraphDef proto.
  
 
 | Args | 
|---|
 
 | graph_def | A GraphDefproto containing operations to be imported into the default graph. | 
 | input_map | A dictionary mapping input names (as strings) in graph_deftoTensorobjects. The values of the named input tensors in the imported graph will be re-mapped to the respectiveTensorvalues. | 
 | return_elements | A list of strings containing operation names in graph_defthat will be returned asOperationobjects; and/or tensor names ingraph_defthat will be returned asTensorobjects. | 
 | name | (Optional.) A prefix that will be prepended to the names in graph_def. Note that this does not apply to imported function names. Defaults to"import". | 
 | op_dict | (Optional.) Deprecated, do not use. | 
 | producer_op_list | (Optional.) An OpListproto with the (possibly stripped) list ofOpDefs used by the producer of the graph. If provided, unrecognized attrs for ops ingraph_defthat have their default value according toproducer_op_listwill be removed. This will allow some moreGraphDefs produced by later binaries to be accepted by earlier binaries. | 
 
  
 
 | Returns | 
|---|
  | A list of Operationand/orTensorobjects from the imported graph, corresponding to the names inreturn_elements, and None ifreturns_elementsis None. | 
 
  
 
 | Raises | 
|---|
 
 | TypeError | If graph_defis not aGraphDefproto,input_mapis not a dictionary mapping strings toTensorobjects, orreturn_elementsis not a list of strings. | 
 | ValueError | If input_map, orreturn_elementscontains names that do not appear ingraph_def, orgraph_defis not well-formed (e.g. it refers to an unknown tensor). |