• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1# Copyright 2020 The TensorFlow Authors. All Rights Reserved.
2#
3# Licensed under the Apache License, Version 2.0 (the "License");
4# you may not use this file except in compliance with the License.
5# You may obtain a copy of the License at
6#
7#     http://www.apache.org/licenses/LICENSE-2.0
8#
9# Unless required by applicable law or agreed to in writing, software
10# distributed under the License is distributed on an "AS IS" BASIS,
11# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12# See the License for the specific language governing permissions and
13# limitations under the License.
14# ==============================================================================
15"""Constants for modify_model_interface."""
16
17from tensorflow.python.framework import dtypes
18
19STR_TO_TFLITE_TYPES = {
20    'INT8': dtypes.int8,
21    'UINT8': dtypes.uint8,
22    'INT16': dtypes.int16,
23}
24TFLITE_TO_STR_TYPES = {v: k for k, v in STR_TO_TFLITE_TYPES.items()}
25
26STR_TYPES = STR_TO_TFLITE_TYPES.keys()
27TFLITE_TYPES = STR_TO_TFLITE_TYPES.values()
28
29DEFAULT_STR_TYPE = 'INT8'
30DEFAULT_TFLITE_TYPE = STR_TO_TFLITE_TYPES[DEFAULT_STR_TYPE]
31