You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
90 lines
3.2 KiB
90 lines
3.2 KiB
5 years ago
|
# 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.
|
||
|
# ==============================================================================
|
||
|
"""Contains a factory for building various models.
|
||
|
"""
|
||
|
|
||
|
import functools
|
||
|
import tensorflow as tf
|
||
|
|
||
|
# from nets import inception
|
||
|
# from nets import overfeat
|
||
|
# from nets import resnet_v1
|
||
|
# from nets import resnet_v2
|
||
|
from nets import vgg
|
||
|
# from nets import xception
|
||
|
|
||
|
from nets import ssd_vgg_300
|
||
|
from nets import ssd_vgg_512
|
||
|
|
||
|
slim = tf.contrib.slim
|
||
|
|
||
|
networks_map = {'vgg_a': vgg.vgg_a,
|
||
|
'vgg_16': vgg.vgg_16,
|
||
|
'vgg_19': vgg.vgg_19,
|
||
|
'ssd_300_vgg': ssd_vgg_300.ssd_net,
|
||
|
'ssd_300_vgg_caffe': ssd_vgg_300.ssd_net,
|
||
|
'ssd_512_vgg': ssd_vgg_512.ssd_net,
|
||
|
'ssd_512_vgg_caffe': ssd_vgg_512.ssd_net,
|
||
|
}
|
||
|
|
||
|
arg_scopes_map = {'vgg_a': vgg.vgg_arg_scope,
|
||
|
'vgg_16': vgg.vgg_arg_scope,
|
||
|
'vgg_19': vgg.vgg_arg_scope,
|
||
|
'ssd_300_vgg': ssd_vgg_300.ssd_arg_scope,
|
||
|
'ssd_300_vgg_caffe': ssd_vgg_300.ssd_arg_scope_caffe,
|
||
|
'ssd_512_vgg': ssd_vgg_512.ssd_arg_scope,
|
||
|
'ssd_512_vgg_caffe': ssd_vgg_512.ssd_arg_scope_caffe,
|
||
|
}
|
||
|
|
||
|
networks_obj = {'ssd_300_vgg': ssd_vgg_300.SSDNet,
|
||
|
'ssd_512_vgg': ssd_vgg_512.SSDNet,
|
||
|
}
|
||
|
|
||
|
|
||
|
def get_network(name):
|
||
|
"""Get a network object from a name.
|
||
|
"""
|
||
|
# params = networks_obj[name].default_params if params is None else params
|
||
|
return networks_obj[name]
|
||
|
|
||
|
|
||
|
def get_network_fn(name, num_classes, is_training=False, **kwargs):
|
||
|
"""Returns a network_fn such as `logits, end_points = network_fn(images)`.
|
||
|
|
||
|
Args:
|
||
|
name: The name of the network.
|
||
|
num_classes: The number of classes to use for classification.
|
||
|
is_training: `True` if the model is being used for training and `False`
|
||
|
otherwise.
|
||
|
weight_decay: The l2 coefficient for the model weights.
|
||
|
Returns:
|
||
|
network_fn: A function that applies the model to a batch of images. It has
|
||
|
the following signature: logits, end_points = network_fn(images)
|
||
|
Raises:
|
||
|
ValueError: If network `name` is not recognized.
|
||
|
"""
|
||
|
if name not in networks_map:
|
||
|
raise ValueError('Name of network unknown %s' % name)
|
||
|
arg_scope = arg_scopes_map[name](**kwargs)
|
||
|
func = networks_map[name]
|
||
|
@functools.wraps(func)
|
||
|
def network_fn(images, **kwargs):
|
||
|
with slim.arg_scope(arg_scope):
|
||
|
return func(images, num_classes, is_training=is_training, **kwargs)
|
||
|
if hasattr(func, 'default_image_size'):
|
||
|
network_fn.default_image_size = func.default_image_size
|
||
|
|
||
|
return network_fn
|