3

Im trying to set comet (https://www.comet.ml) to track my Tensorflow experiment, after I create an Experiment and log the data set i dont get the accuracy in my report.

my code:

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) 

in the example account : https://www.comet.ml/view/Jon-Snow I see that accuracy is reported

1 Answer 1

3

you can report accuracy using this method:

  • experiment.log_accuracy(train_accuracy)

take a look at the full Tensorflow example in our guide:

Sign up to request clarification or add additional context in comments.

1 Comment

yes! was looking for this, love what you guys are doing!

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.