TensorFlow小技巧1:模型微调时如何将global_step置0

文章目录

    • TensorFlow模型微调时将global_step置0

TensorFlow模型微调时将global_step置0

模型微调需要载入参数,tf默认载入所有参数,其中就包括了global_step这个参数,有时候这个参数和学习率的更新有关,那么该怎么将这个参数初始化呢?看代码
只需要加一个initializer就行
对应其他参数也可以类似

global_step = tf.train.create_global_step()
saver = tf.train.Saver()
ckpt = tf.train.get_checkpoint_state(model_dir)
    if not (ckpt and ckpt.model_checkpoint_path):
        print('No checkpoint file found')
    else:
        print(ckpt.model_checkpoint_path)
        model_name = ckpt.model_checkpoint_path.split('/')[-1]

        saver.restore(sess, os.path.join(model_dir, model_name))
        sess.run(global_step.initializer) #加这段

你可能感兴趣的:(TensorFlow,&,Keras)