如何在转置层之间绑定权重?

2024-04-19 19:29:33 发布

您现在位置:Python中文网/ 问答频道 /正文

我尝试在TensorFlow2.0Keras中绑定权重,代码如下。但它显示了这个错误?有人知道怎么写密密麻麻的重量吗?在

tf.random.set_seed(0)
with tf.device('/cpu:0'):
    # This returns a tensor
    inputs = Input(shape=(784,))

# a layer instance is callable on a tensor, and returns a tensor
    layer_1 = Dense(64, activation='relu')
    layer_1_output = layer_1(inputs)
    layer_2 = Dense(64, activation='relu')
    layer_2_output = layer_2(layer_1_output)
    weights = tf.transpose(layer_1.weights[0]).numpy()
    print(weights.shape)
    transpose_layer = Dense(
        784, activation='relu')
    transpose_layer_output = transpose_layer(layer_2_output)
    transpose_layer.set_weights(weights)
    predictions = Dense(10, activation='softmax')(transpose_layer)

    # This creates a model that includes
    # the Input layer and three Dense layers
    model = Model(inputs=inputs, outputs=predictions)
    model.compile(optimizer=tf.keras.optimizers.Adam(0.001),
                  loss='categorical_crossentropy',
                  metrics=['accuracy'])
    # print(model.weights)
model.summary()

错误

^{pr2}$

Tags: layeroutputmodeltf错误thisactivationreturns
2条回答

我花了很多时间才弄清楚,但我认为这是一种通过将Keras稠密层子类化来绑紧权重的方法。在

class TiedLayer(Dense):
    def __init__(self, layer_sizes, l2_normalize=False, dropout=0.0, *args, **kwargs):
        self.layer_sizes = layer_sizes
        self.l2_normalize = l2_normalize
        self.dropout = dropout
        self.kernels = []
        self.biases = []
        self.biases2 = []
        self.uses_learning_phase = True
        self.activation = kwargs['activation']
        if self.activation == "leaky_relu":
            self.activation = kwargs.pop('activation')
            self.activation = LeakyReLU()
            print(self.activation)
        super().__init__(units=1, *args, **kwargs)  # 'units' not used

    def compute_output_shape(self, input_shape):
        return input_shape

    def build(self, input_shape):
        assert len(input_shape) >= 2
        input_dim = int(input_shape[-1])

        self.input_spec = InputSpec(min_ndim=2, axes={-1: input_dim})
        # print(input_dim)
        for i in range(len(self.layer_sizes)):

            self.kernels.append(
                self.add_weight(
                    shape=(
                        input_dim,
                        self.layer_sizes[i]),
                    initializer=self.kernel_initializer,
                    name='ae_kernel_{}'.format(i),
                    regularizer=self.kernel_regularizer,
                    constraint=self.kernel_constraint))

            if self.use_bias:
                self.biases.append(
                    self.add_weight(
                        shape=(
                            self.layer_sizes[i],
                        ),
                        initializer=self.bias_initializer,
                        name='ae_bias_{}'.format(i),
                        regularizer=self.bias_regularizer,
                        constraint=self.bias_constraint))
            input_dim = self.layer_sizes[i]

        if self.use_bias:
            for n, i in enumerate(range(len(self.layer_sizes)-2, -1, -1)):
                self.biases2.append(
                    self.add_weight(
                        shape=(
                            self.layer_sizes[i],
                        ),
                        initializer=self.bias_initializer,
                        name='ae_bias2_{}'.format(n),
                        regularizer=self.bias_regularizer,
                        constraint=self.bias_constraint))
            self.biases2.append(self.add_weight(
                shape=(
                    int(input_shape[-1]),
                ),
                initializer=self.bias_initializer,
                name='ae_bias2_{}'.format(len(self.layer_sizes)),
                regularizer=self.bias_regularizer,
                constraint=self.bias_constraint))

        self.built = True

    def call(self, inputs):
        return self.decode(self.encode(inputs))

    def _apply_dropout(self, inputs):
        dropped = K.backend.dropout(inputs, self.dropout)
        return K.backend.in_train_phase(dropped, inputs)

    def encode(self, inputs):
        latent = inputs
        for i in range(len(self.layer_sizes)):
            if self.dropout > 0:
                latent = self._apply_dropout(latent)
            print(self.kernels[i])
            latent = K.backend.dot(latent, self.kernels[i])
            if self.use_bias:
                print(self.biases[i])
                latent = K.backend.bias_add(latent, self.biases[i])
            if self.activation is not None:
                latent = self.activation(latent)
        if self.l2_normalize:
            latent = latent / K.backend.l2_normalize(latent, axis=-1)
        return latent

    def decode(self, latent):
        recon = latent
        for i in range(len(self.layer_sizes)):
            if self.dropout > 0:
                recon = self._apply_dropout(recon)
            print(self.kernels[len(self.layer_sizes) - i - 1])
            recon = K.backend.dot(recon, K.backend.transpose(
                self.kernels[len(self.layer_sizes) - i - 1]))
            if self.use_bias:
                print(self.biases2[i])
                recon = K.backend.bias_add(recon, self.biases2[i])
            if self.activation is not None:
                recon = self.activation(recon)
        return recon

    def get_config(self):
        config = {
            'layer_sizes': self.layer_sizes
        }
        base_config = super().get_config()
        base_config.pop('units', None)
        return dict(list(base_config.items()) + list(config.items()))

    @classmethod
    def from_config(cls, config):
        return cls(**config)

希望它能帮助别人。在

让我们先看看模型体系结构和模型参数(无需绑定权重)

enter image description here

蓝色箭头表示偏差。所以一个有n个输入的神经元有n+1个权重。在

现在需要将transpose_layer的权重与layer_1联系起来。您将layers_1的权重转换为64*784,并将其设置为transpose_layers,但是有几个问题

weight[0]将给出权重,weight[1]将给出稠密层的偏差。所以你在那里很好。但是set_weights需要一个权重列表。在Dense层的情况下,它需要两个np数组的列表:第一个列表是大小的权重(64*784),第二个列表是大小为784的np数组,用于偏差。那么如何得到784个偏差值呢?在

解决方案:

  1. 一个好的选择是通过设置use_bias=False来禁用偏差
  2. 保持偏移值不变。(通过weight[1]读取偏差值,并在set_weights中传回它们)
  3. 只需将偏差设置为一些小的随机值(非常糟糕的主意)

使用解决方案1编码:

import tensorflow as tf
from keras.layers import Dense, Input
from keras.models import Model

with tf.device('/cpu:0'):

    inputs = Input(shape=(784,))

    layer_1 = Dense(64, activation='relu')
    layer_1_output = layer_1(inputs)

    layer_2 = Dense(64, activation='relu')
    layer_2_output = layer_2(layer_1_output)

    transpose_layer = Dense(784, activation='relu', use_bias=False)
    transpose_layer_output = transpose_layer(layer_2_output)

    transpose_layer.set_weights([layer_1.get_weights()[0].T])

    model = Model(inputs=inputs, outputs=transpose_layer_output)
    model.compile('adam', loss='categorical_crossentropy')

    model.summary()
^{pr2}$

注意:您可以看到,use_bias=Falsetranspose_layer中的结果是784*64 = 50176权重,而不是{}权重,如图所示(带有偏差)

相关问题 更多 >