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
Hi All. I Have A General Question Regarding The Logging Mechanism. Using

Hi all.
I have a general question regarding the logging mechanism.
Using https://github.com/allegroai/clearml/blob/master/examples/frameworks/tensorflow/tensorflow_mnist.py as a reference, the tf.summary writes to a tempdir, but ClearML will also log everything to another destination.
My questions are -
What is the default logging destination? Is it the file server?
The tempdir can be deleted when the script ends with no loss of data?

  
  
Posted one year ago
Votes Newest

Answers 2


CrookedWalrus33 , you can set in the Task.init , set the output_uri = True . This should upload to the fileserver since by default models are saved locally

  
  
Posted one year ago

Thanks

  
  
Posted one year ago