【问题标题】:How to configure comet (comet.ml) to log Tensorflow?如何配置 Comet (comet.ml) 来记录 Tensorflow?
【发布时间】:2023-03-19 20:31:01
【问题描述】:

我正在尝试设置 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 我看到报告的准确性

【问题讨论】:

    标签: tensorflow machine-learning comet-ml


    【解决方案1】:

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

    • experiment.log_accuracy(train_accuracy)

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

    【讨论】:

    • 是的!正在寻找这个,喜欢你们正在做的事情!
    猜你喜欢
    • 1970-01-01
    • 1970-01-01
    • 2020-04-14
    • 2020-04-21
    • 2016-05-02
    • 2019-07-26
    • 2018-10-12
    • 2012-08-29
    • 2011-10-18
    相关资源
    最近更新 更多