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
Hello, I Have Two Experiments Having The Same Plot With The Same X Values. When I Compare These Two Experiments, The Plots Are Drawn Next To Each Other (See Figure), But I Would Appreciate To See The Y-Values Of The Experiments Just In One Plot. The Plot

Hello, I have two experiments having the same plot with the same x values. When I compare these two experiments, the plots are drawn next to each other (see figure), but I would appreciate to see the y-values of the experiments just in one plot. The plots are drawn using task.get_logger().report_plotly - the title and series are the same in both experiments, figures are of course slightly different regarding y values, and the iteration is not filled. Any idea, how can I achieve the comparison just in one plot?

  
  
Posted 2 years ago
Votes Newest

Answers 5


AgitatedDove14 Thank you very much for your advice and explanation.

  
  
Posted 2 years ago

My pleasure 🙂

  
  
Posted 2 years ago

Hi CurvedHedgehog15
Yes you are correct, plots are displayed side-by-side in the ui. The reason is that since they are very generic, it is very challenging to actually be able to merge / overlay two arbitrary plots.
I can see two options

  1. To allow user to combine two plots in the ui (this way the responsibility is on the user to understand this is possible
  2. Maybe add programmatic interface to more easily access the raw data?
    Wdyt?
  
  
Posted 2 years ago

Hi AgitatedDove14 , thank you for your response
Yes, firstly I was thinking about the option 2, but then I saw one case in our experiments where the ui merges the plots just as we want and I was wondering if there is some simple way to do it in the case of all plots. In my opinion, for our use case option 1 is also fine - how can I combine two plots in the ui as you mentioned?

  
  
Posted 2 years ago

where the ui merges the plots just as we want and I was wondering if there is some simple way to do it in the case of all plots.

we can do it for scalars (this is trivial)
We can merge specific plots when they are simple, I think basic histograms.
But for any generic plots we fear the merge will just fail, and this is why it defaults to side by side.

how can I combine two plots in the ui as you mentioned?

The easiest solution is to use, "report_scatter2d", these are specific plot reporting that will be merged when compared
https://clear.ml/docs/latest/docs/guides/reporting/scatter_hist_confusion_mat_reporting#2d-scatter-plots

  
  
Posted 2 years ago
597 Views
5 Answers
2 years ago
one year ago
Tags
Similar posts