tf.compat.v1.lite.experimental.convert_op_hints_to_stubs

View source on GitHub

Converts a graphdef with LiteOp hints into stub operations.

tf.compat.v1.lite.experimental.convert_op_hints_to_stubs(
    session=None, graph_def=None, write_callback=(lambda graph_def, comments: None)
)

This is used to prepare for toco conversion of complex intrinsic usages. Note: only one of session or graph_def should be used, not both.

Args:

Returns:

A new graphdef with all ops contained in OpHints being replaced by a single op call with the right parameters.

Raises: