topology.py 3.2 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
import collections

from paddle.proto.ModelConfig_pb2 import ModelConfig
X
xuwei06 已提交
18
import paddle.trainer_config_helpers as conf_helps
Q
qiaolongfei 已提交
19
import layer as v2_layer
X
xuwei06 已提交
20
import config_base
Q
qiaolongfei 已提交
21 22 23 24 25 26 27 28 29 30

__all__ = ['Topology']


class Topology(object):
    """
    Topology is used to store the information about all layers
    and network configs.
    """

31 32 33 34 35 36 37 38 39
    def __init__(self, layers, extra_layers=None):
        def __check__(layers):
            if not isinstance(layers, collections.Sequence):
                layers = [layers]
            for layer in layers:
                __check_layer_type__(layer)
            return layers

        layers = __check__(layers)
Q
qiaolongfei 已提交
40
        self.layers = layers
41 42 43 44
        if extra_layers is not None:
            extra_layers = __check__(extra_layers)

        self.__model_config__ = v2_layer.parse_network(
D
dangqingqing 已提交
45
            layers, extra_layers=extra_layers)
D
bug fix  
dangqingqing 已提交
46 47 48 49

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

Q
qiaolongfei 已提交
50
        assert isinstance(self.__model_config__, ModelConfig)
Q
qiaolongfei 已提交
51

Q
qiaolongfei 已提交
52 53 54 55 56
    def use_sparse_updater(self):
        """
        check if any parameter require to use sparse_update
        :return:
        """
57
        use_sparse = False
Q
qiaolongfei 已提交
58 59
        for parameter in self.__model_config__.parameters:
            if parameter.sparse_update or parameter.sparse_remote_update:
60 61 62
                use_sparse = True
                break
        return use_sparse
Q
qiaolongfei 已提交
63

Q
qiaolongfei 已提交
64
    def proto(self):
Q
qiaolongfei 已提交
65 66 67
        return self.__model_config__

    def get_layer(self, name):
Q
qiaolongfei 已提交
68 69 70 71 72
        """
        get v2.Layer Class instance by layer name
        :param name:
        :return:
        """
X
xuwei06 已提交
73
        return v2_layer.get_layer(name)
Q
qiaolongfei 已提交
74

Q
qiaolongfei 已提交
75
    def data_layers(self):
Q
qiaolongfei 已提交
76 77 78 79
        """
        get all data layer
        :return:
        """
X
xuwei06 已提交
80 81 82 83 84
        data_layers = {}
        for layer in self.proto().layers:
            l = v2_layer.get_layer(layer.name)
            if l and l.layer_type == conf_helps.LayerType.DATA:
                data_layers[layer.name] = l
Q
qiaolongfei 已提交
85 86
        return data_layers

Q
qiaolongfei 已提交
87 88
    def data_type(self):
        """
Q
qiaolongfei 已提交
89 90
        get data_type from proto, such as:
        [('image', dense_vector(768)), ('label', integer_value(10))]
Q
qiaolongfei 已提交
91
        """
D
dangqingqing 已提交
92
        data_layers = self.data_layers()
93

X
xuwei06 已提交
94
        return [(nm, data_layers[nm].data_type)
C
caoying03 已提交
95
                for nm in self.proto().input_layer_names]
Q
qiaolongfei 已提交
96

Q
qiaolongfei 已提交
97 98 99 100 101 102
    def get_layer_proto(self, name):
        for layer in self.__model_config__.layers:
            if layer.name == name:
                return layer
        return None

Q
qiaolongfei 已提交
103

Q
qiaolongfei 已提交
104
def __check_layer_type__(layer):
X
xuwei06 已提交
105 106
    if not isinstance(layer, config_base.Layer):
        raise ValueError('layer should have type paddle.v2.config_base.Layer')