topology.py 3.6 KB
Newer Older
Q
qiaolongfei 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14
# Copyright (c) 2016 PaddlePaddle 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.

Q
qiaolongfei 已提交
15
import collections
D
bug fix  
dangqingqing 已提交
16
import copy
Q
qiaolongfei 已提交
17 18 19 20

from paddle.proto.ModelConfig_pb2 import ModelConfig

import layer as v2_layer
21
from layer import WithExtraParent
Q
qiaolongfei 已提交
22 23 24 25

__all__ = ['Topology']


D
update  
dangqingqing 已提交
26 27 28 29 30 31 32 33 34 35 36 37 38
def __flatten__(lis):
    """
    Given a list, possibly nested to any level, return it flattened.
    """
    new_lis = []
    for item in lis:
        if isinstance(item, collections.Sequence):
            new_lis.extend(__flatten__(item))
        else:
            new_lis.append(item)
    return new_lis


39
def __bfs_travel__(callback, *layers):
D
update  
dangqingqing 已提交
40
    layers = __flatten__(layers)
41 42 43 44
    for each_layer in layers:
        __break__ = callback(each_layer)
        if __break__:
            return
45 46 47 48
        __layers__ = each_layer.__parent_layers__.values()
        if isinstance(each_layer, WithExtraParent):
            __layers__ = __layers__ + each_layer.extra_parent()
        __bfs_travel__(callback, *__layers__)
49 50


Q
qiaolongfei 已提交
51 52 53 54 55 56
class Topology(object):
    """
    Topology is used to store the information about all layers
    and network configs.
    """

57 58 59 60 61 62 63 64 65 66
    def __init__(self, layers, extra_layers=None):
        def __check__(layers):
            if not isinstance(layers, collections.Sequence):
                __check_layer_type__(layers)
                layers = [layers]
            for layer in layers:
                __check_layer_type__(layer)
            return layers

        layers = __check__(layers)
Q
qiaolongfei 已提交
67
        self.layers = layers
68 69 70 71 72
        if extra_layers is not None:
            extra_layers = __check__(extra_layers)

        self.__model_config__ = v2_layer.parse_network(
            *layers, extra_layers=extra_layers)
D
bug fix  
dangqingqing 已提交
73 74 75 76

        if extra_layers is not None:
            self.layers.extend(extra_layers)

Q
qiaolongfei 已提交
77
        assert isinstance(self.__model_config__, ModelConfig)
Q
qiaolongfei 已提交
78

Q
qiaolongfei 已提交
79
    def proto(self):
Q
qiaolongfei 已提交
80 81 82
        return self.__model_config__

    def get_layer(self, name):
Q
qiaolongfei 已提交
83 84 85 86 87
        """
        get v2.Layer Class instance by layer name
        :param name:
        :return:
        """
88
        result_layer = [None]
Q
qiaolongfei 已提交
89

90 91 92 93 94
        def __impl__(l):
            if l.name == name:
                result_layer[0] = l
                return True  # break
            return False
Q
qiaolongfei 已提交
95

96 97 98
        __bfs_travel__(__impl__, *self.layers)
        if result_layer[0] is None:
            raise ValueError("No such layer %s" % name)
Q
qiaolongfei 已提交
99 100
        return result_layer[0]

Q
qiaolongfei 已提交
101
    def data_layers(self):
Q
qiaolongfei 已提交
102 103 104 105
        """
        get all data layer
        :return:
        """
106
        data_layers = dict()
Q
qiaolongfei 已提交
107

108 109 110
        def __impl__(l):
            if isinstance(l, v2_layer.DataLayerV2):
                data_layers[l.name] = l
Q
qiaolongfei 已提交
111

112
        __bfs_travel__(__impl__, *self.layers)
Q
qiaolongfei 已提交
113 114
        return data_layers

Q
qiaolongfei 已提交
115 116
    def data_type(self):
        """
Q
qiaolongfei 已提交
117 118
        get data_type from proto, such as:
        [('image', dense_vector(768)), ('label', integer_value(10))]
Q
qiaolongfei 已提交
119
        """
D
dangqingqing 已提交
120
        data_layers = self.data_layers()
121 122
        return [(nm, data_layers[nm].type)
                for nm in self.proto().input_layer_names]
Q
qiaolongfei 已提交
123 124


Q
qiaolongfei 已提交
125 126 127
def __check_layer_type__(layer):
    if not isinstance(layer, v2_layer.LayerV2):
        raise ValueError('layer should have type paddle.layer.Layer')