Home | History | Annotate | only in /external/tensorflow/tensorflow/contrib/lite/toco
Up to higher level directory
NameDateSize
allocate_transient_arrays.cc21-Aug-201811.7K
allocate_transient_arrays.h21-Aug-20181.9K
args.h21-Aug-20188.1K
BUILD21-Aug-201811.5K
dump_graphviz.cc21-Aug-201813.8K
dump_graphviz.h21-Aug-20181,013
export_tensorflow.cc21-Aug-201878.5K
export_tensorflow.h21-Aug-20181.1K
format_port.h21-Aug-20182.9K
g3doc/21-Aug-2018
graph_transformations/21-Aug-2018
import_tensorflow.cc21-Aug-201878.5K
import_tensorflow.h21-Aug-20181.6K
model.h21-Aug-201853.8K
model_cmdline_flags.cc21-Aug-201818.2K
model_cmdline_flags.h21-Aug-20181.7K
model_flags.proto21-Aug-20187.3K
python/21-Aug-2018
README.md21-Aug-20181K
runtime/21-Aug-2018
tensorflow_graph_matching/21-Aug-2018
tensorflow_util.cc21-Aug-20187.6K
tensorflow_util.h21-Aug-20181.2K
tflite/21-Aug-2018
toco.cc21-Aug-20184.7K
toco_cmdline_flags.cc21-Aug-201810.8K
toco_cmdline_flags.h21-Aug-20181.6K
toco_flags.proto21-Aug-20186.3K
toco_graphviz_dump_options.cc21-Aug-2018895
toco_graphviz_dump_options.h21-Aug-20181.2K
toco_port.cc21-Aug-20185.9K
toco_port.h21-Aug-20183.1K
toco_port_test.cc21-Aug-20181.8K
toco_tooling.cc21-Aug-201812.6K
toco_tooling.h21-Aug-20181.9K
toco_types.h21-Aug-20181.4K
tooling_util.cc21-Aug-201864.5K
tooling_util.h21-Aug-201813K
tooling_util_test.cc21-Aug-20183.7K
types.proto21-Aug-20181,003

README.md

      1 # The TensorFlow Lite Optimizing Converter
      2 
      3 The TensorFlow Lite Optimizing Converter's most typical use is converting from the TensorFlow GraphDef to the TensorFlow Lite
      4 format, but it supports much more than that.
      5 
      6 ## Usage documentation
      7 
      8 Usage information is given in these documents:
      9 
     10 *   [Command-line examples](g3doc/cmdline_examples.md)
     11 *   [Command-line reference](g3doc/cmdline_reference.md)
     12 *   [Python API](g3doc/python_api.md)
     13 
     14 ## Design documentation
     15 
     16 Coming soon!
     17 
     18 ## Where the converter fits in the TensorFlow landscape
     19 
     20 In the typical case, an application developer is using TensorFlow to design and
     21 train models, then uses TensorFlow's freeze_graph.py to generate a frozen
     22 inference graph, then uses the converter to convert that into a TensorFlow Lite flatbuffer file,
     23 then ships that file to client devices where the TensorFlow Lite interpreter handles them
     24 on-device. This is represented in the following diagram:
     25 
     26 ![drawing](https://storage.googleapis.com/download.tensorflow.org/example_images/tensorflow_landscape.svg)
     27