Home | History | Annotate | only in /external/tensorflow/tensorflow/lite/toco
Up to higher level directory
NameDateSize
allocate_transient_arrays.cc22-Oct-202012.9K
allocate_transient_arrays.h22-Oct-20201.9K
args.cc22-Oct-20205.9K
args.h22-Oct-20206.8K
BUILD22-Oct-202015.8K
dump_graphviz.cc22-Oct-202025.9K
dump_graphviz.h22-Oct-20201K
export_tensorflow.cc22-Oct-2020106.7K
export_tensorflow.h22-Oct-20201.1K
format_port.h22-Oct-20202.8K
g3doc/22-Oct-2020
graph_transformations/22-Oct-2020
import_tensorflow.cc22-Oct-2020100.6K
import_tensorflow.h22-Oct-20201.7K
import_tensorflow_test.cc22-Oct-202023.3K
model.h22-Oct-202072.3K
model_cmdline_flags.cc22-Oct-202019.8K
model_cmdline_flags.h22-Oct-20201.7K
model_cmdline_flags_test.cc22-Oct-20202.3K
model_flags.proto22-Oct-20207.7K
python/22-Oct-2020
README.md22-Oct-20201.3K
runtime/22-Oct-2020
tensorflow_graph_matching/22-Oct-2020
tensorflow_util.cc22-Oct-20207.6K
tensorflow_util.h22-Oct-20201.1K
tflite/22-Oct-2020
toco.cc22-Oct-20202.2K
toco_cmdline_flags.cc22-Oct-202016.9K
toco_cmdline_flags.h22-Oct-20201.5K
toco_convert.cc22-Oct-20204.5K
toco_convert.h22-Oct-20201.4K
toco_convert_test.cc22-Oct-20205K
toco_flags.proto22-Oct-20209.6K
toco_graphviz_dump_options.cc22-Oct-2020887
toco_graphviz_dump_options.h22-Oct-20201.1K
toco_port.cc22-Oct-20207.7K
toco_port.h22-Oct-20203.7K
toco_port_test.cc22-Oct-20202K
toco_tooling.cc22-Oct-202019.4K
toco_tooling.h22-Oct-20202.2K
toco_types.h22-Oct-20201.3K
tooling_util.cc22-Oct-202085.4K
tooling_util.h22-Oct-202015K
tooling_util_test.cc22-Oct-20207.5K
types.proto22-Oct-20201.2K

README.md

      1 # TensorFlow Lite Converter
      2 
      3 The TensorFlow Lite Converter converts TensorFlow graphs into
      4 TensorFlow Lite graphs. There are additional usages that are also detailed in
      5 the usage documentation.
      6 
      7 ## Usage documentation
      8 
      9 Usage information is given in these documents:
     10 
     11 *   [Command-line glossary](../g3doc/convert/cmdline_reference.md)
     12 *   [Command-line examples](../g3doc/convert/cmdline_examples.md)
     13 *   [Python API examples](../g3doc/convert/python_api.md)
     14 
     15 ## Where the converter fits in the TensorFlow landscape
     16 
     17 Once an application developer has a trained TensorFlow model, the TensorFlow
     18 Lite Converter will accept
     19 that model and generate a TensorFlow Lite
     20 [FlatBuffer](https://google.github.io/flatbuffers/) file. The converter currently supports
     21 [SavedModels](https://www.tensorflow.org/guide/saved_model#using_savedmodel_with_estimators),
     22 frozen graphs (models generated via
     23 [freeze_graph.py](https://github.com/tensorflow/tensorflow/blob/master/tensorflow/python/tools/freeze_graph.py)),
     24 and `tf.Keras` model files.  The TensorFlow Lite FlatBuffer file can be shipped
     25 to client devices, generally mobile devices, where the TensorFlow Lite
     26 interpreter handles them on-device.  This flow is represented in the diagram
     27 below.
     28 
     29 ![drawing](../g3doc/images/convert/workflow.svg)
     30