You can use logger.report_scalar
and pass a single value.
Hi KindBlackbird59 , if you take a look at https://github.com/allegroai/clearml/blob/master/examples/reporting/scalar_reporting.py , you'll see calls like this:logger.report_scalar("unified graph", "series A", iteration=i, value=1./(i+1))
Which basically report a single number. In the results page you'll see this as a graph called "unified graph" with a time-based series showing values reported (x-axis will be either iterations or wall-time)
ok great, and then I can view this number and compare it on the experiments page?