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?