topology.py 2.7 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 16 17 18 19
import collections

from paddle.proto.ModelConfig_pb2 import ModelConfig

import layer as v2_layer
Q
qiaolongfei 已提交
20 21 22 23

__all__ = ['Topology']


24 25 26 27 28 29 30 31
def __bfs_travel__(callback, *layers):
    for each_layer in layers:
        __break__ = callback(each_layer)
        if __break__:
            return
        __bfs_travel__(callback, *each_layer.__parent_layers__.values())


Q
qiaolongfei 已提交
32 33 34 35 36 37
class Topology(object):
    """
    Topology is used to store the information about all layers
    and network configs.
    """

Q
qiaolongfei 已提交
38 39
    def __init__(self, layers):
        if not isinstance(layers, collections.Sequence):
Q
qiaolongfei 已提交
40 41
            __check_layer_type__(layers)
            layers = [layers]
Q
qiaolongfei 已提交
42
        for layer in layers:
Q
qiaolongfei 已提交
43
            __check_layer_type__(layer)
Q
qiaolongfei 已提交
44 45 46
        self.layers = layers
        self.__model_config__ = v2_layer.parse_network(*layers)
        assert isinstance(self.__model_config__, ModelConfig)
Q
qiaolongfei 已提交
47

Q
qiaolongfei 已提交
48
    def proto(self):
Q
qiaolongfei 已提交
49 50 51
        return self.__model_config__

    def get_layer(self, name):
Q
qiaolongfei 已提交
52 53 54 55 56
        """
        get v2.Layer Class instance by layer name
        :param name:
        :return:
        """
57
        result_layer = [None]
Q
qiaolongfei 已提交
58

59 60 61 62 63
        def __impl__(l):
            if l.name == name:
                result_layer[0] = l
                return True  # break
            return False
Q
qiaolongfei 已提交
64

65 66 67
        __bfs_travel__(__impl__, *self.layers)
        if result_layer[0] is None:
            raise ValueError("No such layer %s" % name)
Q
qiaolongfei 已提交
68 69
        return result_layer[0]

Q
qiaolongfei 已提交
70
    def data_layers(self):
Q
qiaolongfei 已提交
71 72 73 74
        """
        get all data layer
        :return:
        """
75
        data_layers = dict()
Q
qiaolongfei 已提交
76

77 78 79
        def __impl__(l):
            if isinstance(l, v2_layer.DataLayerV2):
                data_layers[l.name] = l
Q
qiaolongfei 已提交
80

81
        __bfs_travel__(__impl__, *self.layers)
Q
qiaolongfei 已提交
82 83
        return data_layers

Q
qiaolongfei 已提交
84 85
    def data_type(self):
        """
Q
qiaolongfei 已提交
86 87
        get data_type from proto, such as:
        [('image', dense_vector(768)), ('label', integer_value(10))]
Q
qiaolongfei 已提交
88
        """
89 90 91
        data_layers = self.data_layers()
        return [(nm, data_layers[nm].type)
                for nm in self.proto().input_layer_names]
Q
qiaolongfei 已提交
92 93


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