Unanswered
Hi,
I Try To Use Tf History And To Report The Metrics In The End Of The Training. This Is How I Try To Do It:
Hi RoundSeahorse20 ,
According to the error, history.history['accuracy']
and history.history['loss']
are lists containing the values for the accuracy and loss.
You can go over those and report each value:for idx, val in enumerate(history.history['accuracy']): logger.report_scalar("accuracy score", "Train", iteration=idx, value=val)
Can this do the trick?
166 Views
0
Answers
3 years ago
one year ago