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"""An import entry for the TFLite Support project. 16 17In the original project structure, all python targets are accessed by paths like 18tensorflow_lite_support.metadata.metadata.MetadataDisplayer, which is verbose 19and deep. This file provides some shortcuts. It's also compatible with our first 20version Pip package. 21 22In pip build, this file will be renamed as tflite_support/__init__.py. 23""" 24 25import flatbuffers 26from tensorflow_lite_support.metadata import metadata_schema_py_generated 27from tensorflow_lite_support.metadata import schema_py_generated 28from tensorflow_lite_support.metadata.python import metadata 29