Transfer learning on TensorFlow-Slim image classification model library
# Copyright 2016 The TensorFlow Authors. All Rights Reserved.## Licensed under the Apache License, Version 2.0 (the "License");# you may not use this file except in compliance with the License.# You may obtain a copy of the License at## http://www.apache.org/licenses/LICENSE-2.0## Unless required by applicable law or agreed to in writing, software# distributed under the License is distributed on an "AS IS" BASIS,# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.# See the License for the specific language governing permissions and# limitations under the License.# =============================================================================="""Brings all inception models under one namespace."""from __future__ import absolute_importfrom __future__ import divisionfrom __future__ import print_function# pylint: disable=unused-importfrom nets.inception_resnet_v2 import inception_resnet_v2from nets.inception_resnet_v2 import inception_resnet_v2_arg_scopefrom nets.inception_resnet_v2 import inception_resnet_v2_basefrom nets.inception_v1 import inception_v1from nets.inception_v1 import inception_v1_arg_scopefrom nets.inception_v1 import inception_v1_basefrom nets.inception_v2 import inception_v2from nets.inception_v2 import inception_v2_arg_scopefrom nets.inception_v2 import inception_v2_basefrom nets.inception_v3 import inception_v3from nets.inception_v3 import inception_v3_arg_scopefrom nets.inception_v3 import inception_v3_basefrom nets.inception_v4 import inception_v4from nets.inception_v4 import inception_v4_arg_scopefrom nets.inception_v4 import inception_v4_base# pylint: enable=unused-import