1# Copyright 2016 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"""TF-Slim Nets.
16
17## Standard Networks.
18@@alexnet_v2
19@@inception_v1
20@@inception_v1_base
21@@inception_v2
22@@inception_v2_base
23@@inception_v3
24@@inception_v3_base
25@@overfeat
26@@vgg_a
27@@vgg_16
28"""
29
30from __future__ import absolute_import
31from __future__ import division
32from __future__ import print_function
33
34# pylint: disable=unused-import,
35# Collapse nets into a single namespace.
36from tensorflow.contrib.slim.python.slim.nets import alexnet
37from tensorflow.contrib.slim.python.slim.nets import inception
38from tensorflow.contrib.slim.python.slim.nets import overfeat
39from tensorflow.contrib.slim.python.slim.nets import resnet_utils
40from tensorflow.contrib.slim.python.slim.nets import resnet_v1
41from tensorflow.contrib.slim.python.slim.nets import resnet_v2
42from tensorflow.contrib.slim.python.slim.nets import vgg
43from tensorflow.python.util.all_util import make_all
44# pylint: enable=unused-import
45
46__all__ = make_all(__name__)
47