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 All, We Already Know That Clearml Magic Collects Metrics And Plots From Tensorboard And Matplotlib, Can We Please Add Collection For Plotly And Seaborn ?

Hey all,
we already know that clearml magic collects metrics and plots from tensorboard and matplotlib, can we please add collection for Plotly and Seaborn ?

  
  
Posted 2 years ago
Votes Newest

Answers 3


TimelyPenguin76 AgitatedDove14
I am using the "report_plotly" method, but it means I have to pass it down to inner scopes/functions and manage it directly, as well as define the plots specifically.
It also eliminates the option to run/debug locally without logging because the code has explicit Logger or Task dependencies, instead of being an external wrapper.
It fills my Experiment board on the server with many debug sessions.

Regarding seaborn - good to know. might be a good alternative to plotly.

  
  
Posted 2 years ago

Hi LethalCentipede31

You can report plotly with task.get_logger().report_plotly , like in https://github.com/allegroai/clearml/blob/master/examples/reporting/plotly_reporting.py
For seaborn, once you use plt.show it will be in the UI (example https://github.com/allegroai/clearml/blob/master/examples/frameworks/matplotlib/matplotlib_example.py#L48 )

  
  
Posted 2 years ago
707 Views
3 Answers
2 years ago
one year ago
Tags