码迷,mamicode.com
首页 > 其他好文 > 详细

Keras自定义层

时间:2021-01-19 11:46:49      阅读:0      评论:0      收藏:0      [点我收藏+]

标签:super   from   传递   ble   ken   更改   支持   back   uil   

需要实现三个方法:

  • build(input_shape):定义你自己权重的地方,需要设置self.built=True.你可以通过调用super([Layer],self).build()来实现
  • call(x):定义层逻辑的地方。除非你需要支持mask,否则你只需要关系传递给call的第一个参数
  • compute_output_shape(input_shape):防止你更改你输入的shape,你需要定义shape改变的逻辑
from keras import backend as K
from keras.layers import Layer

class MyLayer(Layer):

    def __init__(self, output_dim, **kwargs):
        self.output_dim = output_dim
        super(MyLayer, self).__init__(**kwargs)

    def build(self, input_shape):
        # Create a trainable weight variable for this layer.
        self.kernel = self.add_weight(name=‘kernel‘, 
                                      shape=(input_shape[1], self.output_dim),
                                      initializer=‘uniform‘,
                                      trainable=True)
        super(MyLayer, self).build(input_shape)  # Be sure to call this at the end

    def call(self, x):
        return K.dot(x, self.kernel)

    def compute_output_shape(self, input_shape):
        return (input_shape[0], self.output_dim)

Keras自定义层

标签:super   from   传递   ble   ken   更改   支持   back   uil   

原文地址:https://www.cnblogs.com/zhouyu0-0/p/12204654.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!