标签: python tensorflow hook tensorflow-estimator
我已经定义了一个估算器,并使用estimator.train来训练模型。
estimator.train
同时我想使用hook(tf.train.SessionRunHook的子类)在训练过程中修改某些滤镜的权重。
hook
tf.train.SessionRunHook
我尝试了tf.assign,但错误指出"RuntimeError: Graph is finalized and cannot be modified."
"RuntimeError: Graph is finalized and cannot be modified."
那么,有人知道在训练期间如何手动修改张量的值吗?