NotImplementedError:学习率计划必须覆盖get_config

时间:2020-05-02 09:17:37

标签: python machine-learning keras tensorflow2.0 transformer

我已经使用tf.keras创建了一个自定义时间表,并且在保存模型时遇到此错误:

NotImplementedError:学习率计划必须覆盖get_config

该类如下:

class CustomSchedule(tf.keras.optimizers.schedules.LearningRateSchedule):

    def __init__(self, d_model, warmup_steps=4000):
        super(CustomSchedule, self).__init__()

        self.d_model = d_model
        self.d_model = tf.cast(self.d_model, tf.float32)

        self.warmup_steps = warmup_steps

    def __call__(self, step):
        arg1 = tf.math.rsqrt(step)
        arg2 = step * (self.warmup_steps**-1.5)

        return tf.math.rsqrt(self.d_model) * tf.math.minimum(arg1, arg2)

    def get_config(self):
        config = {
            'd_model':self.d_model,
            'warmup_steps':self.warmup_steps

        }
        base_config = super(CustomSchedule, self).get_config()
        return dict(list(base_config.items()) + list(config.items()))

1 个答案:

答案 0 :(得分:3)

使用自定义子类模型时,保存模型体系结构有些棘手。相反,使用Model.save_weights()仅保存权重会更容易。

如果将代码更改为此,您将不会看到该错误:

  def get_config(self):
    config = {
    'd_model': self.d_model,
    'warmup_steps': self.warmup_steps,

     }
    return config