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
Hey There I'M Looking To Report Multiple Matplotlib Graphs Into Clearml

Hey there I'm looking to report multiple matplotlib graphs into clearml

	for i in range(0,10):
		mae_fig = model.plot_scores(x_val_seq, y_val_seq, index=i)
		clearml_logger.report_matplotlib_figure(title=f"MAE Values for series {i}", series=i, figure=mae_fig)

this code just uploads th element at index 0 to clearml and the other graphs won't be uploaded. Any idea why it isn't working?

  
  
Posted 2 months ago
Votes Newest

Answers 3


No problem! Feel free to share what was the issue so I'll be familiar 🙂

  
  
Posted 2 months ago

Hi, while trying to set up a test script I got the expected output, so the underlying Problem is probably in my code. Sorry for causing Trouble and Thank You!

  
  
Posted 2 months ago

Hi @<1739455989154844672:profile|SmarmyHamster62> , can you add a stand alone code snippet that reproduces this behaviour?

  
  
Posted 2 months ago
197 Views
3 Answers
2 months ago
2 months ago
Tags