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
Unanswered
Hi


Hi ShinyLobster84 ,
Plots are reported as plotly objects, so the immediate possible output is a response containing a list or a mapping of metric/variant to plotly JSON objects. If you feel there's a better output format, we can think about it. This is still not part of the Task methods, but we'll be happy to add it - we'll appreciate a GitHub issue with a description of your use-case and the required output.
Meanwhile, you can get the task's plots using the APIClient (not the Task object), like so:
from clearml.backend_api.session.client import APIClient client = APIClient() res = client.events.get_task_plots(task="<task-id>")Note that the call returns the plots for a default number of last iterations (controlled by the iters parameter) and may return a limited number of results (due to the total result size), in which case you should receive a scroll ID which you can use in subsequent calls using the scroll_id parameter. For more info on this API call, see https://clear.ml/docs/latest/docs/references/api/events#post-eventsget_task_plots

  
  
Posted 2 years ago
92 Views
0 Answers
2 years ago
one year ago