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, Can I Get Somehow Json Files Of Plots For The Given Task? I Know There Is The "Download Json" Button Near The Plots In Your Web Ui, But I Need Do It Programatically (There Are Many Plots And Many Tasks).

Hello,
Can I get somehow JSON files of plots for the given Task? I know there is the "Download JSON" button near the plots in your web UI, but I need do it programatically (there are many plots and many Tasks).

  
  
Posted 2 years ago
Votes Newest

Answers 5


CurvedHedgehog15 is it plots or scalars you are after ?

  
  
Posted 2 years ago

If this is the case then the easiest is:
from clearml.backend_api.session.client import APIClient client = APIClient() res = client.events.get_task_plots(task="<task-id>")We should defiantly have a nice interface 🙂

  
  
Posted 2 years ago

SuccessfulKoala55 AgitatedDove14 Perfect, you are both awesome, I will try. Thanks 🙂

  
  
Posted 2 years ago

AgitatedDove14 plots

  
  
Posted 2 years ago
649 Views
5 Answers
2 years ago
one year ago
Tags