Hi guys, if I spot issue with documentations, where should I post them? For now, I'll leave it (feel free to delete and/or move it somewhere more relevant).
So I didn't try out all the reporting functionalities, but the one I did choose did have 2 errors. It's this https://clear.ml/docs/latest/docs/references/sdk/logger/#report_scalar one.
When running, I get this error:
Logger.current_logger().report_scalar(title='scalar metrics','series', value=scalar_series[iteration], iteration=iteration) ^ SyntaxError: positional argument follows keyword argument
Simple fix is to make it series='series'
or whatever
And I don't think the code is complete, because it seems like the output only shows one dot in the graph. Here's the code that I think you guys wanted:
for iteration in range (10): Logger.current_logger().report_scalar(title='scalar metrics', series='series', value=scalar_series[iteration], iteration=iteration)
so now that you can see a line graph in the results > scalars page.