tf.lite.Optimize
| Просмотреть исходный код на GitHub |
Перечисление, определяющее оптимизации, которые необходимо применить при генерации графиков tflite.
Некоторые оптимизации могут повлиять на точность.
DEFAULT Стандартная стратегия оптимизации.
Converter will do its best to improve size and latency based on the information provided. Enhanced optimizations are gained by providing a representative_dataset. This is recommended, and is currently equivalent to the modes below. Currently, weights will be quantized and if representative_dataset is provided, activations for quantizable operations will also be quantized.
OPTIMIZE_FOR_SIZE Устаревшее. Делает то же самое, что и DEFAULT.
OPTIMIZE_FOR_LATENCY Устаревшее. Делает то же самое, что и DEFAULT.
Переменные класса
-
DEFAULT -
OPTIMIZE_FOR_LATENCY -
OPTIMIZE_FOR_SIZE
© 2020 The TensorFlow Authors. All rights reserved.
Licensed under the Creative Commons Attribution License 3.0.
Code samples licensed under the Apache 2.0 License.
https://www.tensorflow.org/versions/r2.3/api_docs/python/tf/lite/Optimize