View source on GitHub |
Convert a TensorFlow model into output_format
using TOCO.
This class has been deprecated. Please use lite.TFLiteConverter
instead.
from_frozen_graph
@classmethod
from_frozen_graph(
graph_def_file, input_arrays, output_arrays, input_shapes=None
)
Creates a TocoConverter class from a file containing a frozen graph. (deprecated)
Warning: THIS FUNCTION IS DEPRECATED. It will be removed in a future version.
Instructions for updating:
Use lite.TFLiteConverter.from_frozen_graph
instead.
from_keras_model_file
@classmethod
from_keras_model_file(
model_file, input_arrays=None, input_shapes=None, output_arrays=None
)
Creates a TocoConverter class from a tf.keras model file. (deprecated)
Warning: THIS FUNCTION IS DEPRECATED. It will be removed in a future version.
Instructions for updating:
Use lite.TFLiteConverter.from_keras_model_file
instead.
from_saved_model
@classmethod
from_saved_model(
saved_model_dir, input_arrays=None, input_shapes=None, output_arrays=None,
tag_set=None, signature_key=None
)
Creates a TocoConverter class from a SavedModel. (deprecated)
Warning: THIS FUNCTION IS DEPRECATED. It will be removed in a future version.
Instructions for updating:
Use lite.TFLiteConverter.from_saved_model
instead.
from_session
@classmethod
from_session(
sess, input_tensors, output_tensors
)
Creates a TocoConverter class from a TensorFlow Session. (deprecated)
Warning: THIS FUNCTION IS DEPRECATED. It will be removed in a future version.
Instructions for updating:
Use lite.TFLiteConverter.from_session
instead.