如何配置 comet (comet.ml) 来记录 Tensorflow?

How to configure comet (comet.ml) to log Tensorflow?

我正在尝试设置 comet (https://www.comet.ml) 来跟踪我的 Tensorflow 实验,但在我创建实验并记录数据集后,我的报告没有准确度。

我的代码:

mnist = get_data()
train_step, cross_entropy, accuracy, x, y, y_ = build_model_graph(hyper_params)

experiment = Experiment(api_key="XXXX", log_code=True)
experiment.log_multiple_params(hyper_params)
experiment.log_dataset_hash(mnist)

在示例帐户中:https://www.comet.ml/view/Jon-Snow我看到报告的准确性

您可以使用此方法报告准确性:

  • experiment.log_accuracy(train_accuracy)

查看我们指南中的完整 Tensorflow 示例: