【发布时间】:2020-05-14 15:58:18
【问题描述】:
要记录 hparams without using Keras,我正在按照 tf 代码 here 中的建议执行以下操作:
with tf.summary.create_file_writer(model_dir).as_default():
hp_learning_rate = hp.HParam("learning_rate", hp.RealInterval(0.00001, 0.1))
hp_distance_margin = hp.HParam("distance_margin", hp.RealInterval(0.1, 1.0))
hparams_list = [
hp_learning_rate,
hp_distance_margin
]
metrics_to_monitor = [
hp.Metric("metrics_standalone/auc", group="validation"),
hp.Metric("loss", group="train", display_name="training loss"),
]
hp.hparams_config(hparams=hparams_list, metrics=metrics_to_monitor)
hparams = {
hp_learning_rate: params.learning_rate,
hp_distance_margin: params.distance_margin,
}
hp.hparams(hparams)
请注意,params 在这里是一个字典对象,我将传递给估算器。
然后我像往常一样训练估计器,
config = tf.estimator.RunConfig(model_dir=params.model_dir)
estimator = tf.estimator.Estimator(model_fn, params=params, config=config)
train_spec = tf.estimator.TrainSpec(...)
eval_spec = tf.estimator.EvalSpec(...)
tf.estimator.train_and_evaluate(estimator, train_spec=train_spec, eval_spec=eval_spec)
训练后,当我启动 tensorboard 时,我确实记录了 hparams,但我没有看到针对它们记录的任何指标
我进一步确认,它们出现在 scalars 页面中,对于训练和验证具有相同的标签名称,即 . 和 ./eval,但 hparams 页面没有看到那些记录的张量。
如何将 hparams 与估算器一起使用?
我正在使用
tensorboard 2.1.0
tensorflow 2.1.0
tensorflow-estimator 2.1.0
tensorflow-metadata 0.15.2
在Python 3.7.5
尝试 1:
经过一番谷歌搜索后,我看到了一些较旧的 tf 代码,它们将 hparams 传递给 Estimator 的 params 参数,所以为了确保 tf2 在给定时是否单独记录这些 hparams,我检查了 Estimator 文档和它说:
params参数包含超参数。它被传递给model_fn,如果model_fn有一个名为“params”的参数,那么 以同样的方式输入函数。Estimator只传递参数 沿着,它不检查它。因此params的结构是 完全取决于开发者。
所以使用 hparams 作为参数是没有用的。
尝试 2:
我怀疑由于估算器使用 tensorflow.python.summary 而不是 v2 中的默认值 tf.summary,因此 v1 记录的张量可能无法访问,因此我也尝试使用
with tensorflow.python.summary.FileWriter(model_dir).as_default()
但是,RuntimeError: tf.summary.FileWriter is not compatible with eager execution. Use tf.contrib.summary instead 失败了。
更新:我在禁用急切执行的情况下运行它。现在,即使是 hparam 初始日志记录也没有发生。张量板中没有 hparams 选项卡,因为它失败并出现错误
E0129 13:03:07.656290 21584 hparams_plugin.py:104] HParams error: Can't find an HParams-plugin experiment data in the log directory. Note that it takes some time to scan the log directory; if you just started Tensorboard it could be that we haven't finished scanning it yet. Consider trying again in a few seconds.
有没有办法让张量板读取已经记录的度量张量并将它们与 hparams 链接?
【问题讨论】:
标签: python tensorflow tensorboard hyperparameters