MCPcopy Create free account
hub / github.com/DeepRec-AI/DeepRec / import_graph_def_for_function

Function import_graph_def_for_function

tensorflow/python/framework/importer.py:408–412  ·  view source on GitHub ↗

Like import_graph_def but does not validate colocation constraints.

(  # pylint: disable=invalid-name
    graph_def, name=None)

Source from the content-addressed store, hash-verified

406
407
408def import_graph_def_for_function( # pylint: disable=invalid-name
409 graph_def, name=None):
410 """Like import_graph_def but does not validate colocation constraints."""
411 return _import_graph_def_internal(
412 graph_def, validate_colocation_constraints=False, name=name)
413
414
415def _import_graph_def_internal( # pylint: disable=invalid-name

Callers

nothing calls this directly

Calls 1

Tested by

no test coverage detected