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, I Am Looking For A Way To Report A Single Metric Value Of A Trained Model (Lgbm For Example). I'M Currently Using:

Hi, I am looking for a way to report a single metric value of a trained model (lgbm for example).
I'm currently using:

 logger.report_scalar(title='train', series=metric, value=val, iteration=0)

but it seems a bit redundant to log it as a metric that changes over iterations (there are no iterations in my case).
is there another way that I'm missing?

  
  
Posted 8 months ago
Votes Newest

Answers 2


here is an example of the logged values, I was hoping for a way to log them so they could be visualize better.. any advice (beside making my own plot and log it)?
image

  
  
Posted 8 months ago
546 Views
2 Answers
8 months ago
8 months ago
Tags