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, Folks !! I Have Two Questions On Pytorch Lightning Example In Particular Logging. The Comment Says “Connecting Clearml With The Current Process, From Here On Everything Is Logged Automatically.” Q1: Does This Comment Mean That


Can you share an example of:
self.log(“key_name”, value) that you save?

Hi, AnxiousSeal95 thanks for your help.

self.log(“key_name”, value) just means self.log("train_loss", loss) or self.log("valid_loss", loss) in the example source code 😅

It’s also possible to retrieve configurations from clearml and dump them as a file. Is that what you’re looking for?

If configurations include values which logged at self.log("train_loss", loss) and self.log("valid_loss", loss) , that’s what I am looking for.

Can I manually set the local path to be dumped?

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