Examples: query, "exact match", wildcard*, wild?ard, wild*rd
Fuzzy search: cake~ (finds cakes, bake)
Term boost: "red velvet"^4, chocolate^2
Field grouping: tags:(+work -"fun-stuff")
Escaping: Escape characters +-&|!(){}[]^"~*?:\ with \, e.g. \+
Range search: properties.timestamp:[1587729413488 TO *] (inclusive), properties.title:{A TO Z}(excluding A and Z)
Combinations: chocolate AND vanilla, chocolate OR vanilla, (chocolate OR vanilla) NOT "vanilla pudding"
Field search: properties.title:"The Title" AND text
Answered
Hi, How Can I Log A Metrcis Consists Of One Number?

hi, how can I log a metrcis consists of one number?

  
  
Posted 2 years ago
Votes Newest

Answers 4


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)

  
  
Posted 2 years ago

works great thx!

  
  
Posted 2 years ago

You can use logger.report_scalar and pass a single value.

  
  
Posted 2 years ago

ok great, and then I can view this number and compare it on the experiments page?

  
  
Posted 2 years ago