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
I Saw That Clearml Overrides The Random Number Generator Is It Possible To Control This Behaviour?

I saw that ClearML overrides the random number generator is it possible to control this behaviour?

  
  
Posted one year ago
Votes Newest

Answers 3


I also found that you should have a deterministic ordering

before

you apply a fixed seed

Not sure I follow ?

  
  
Posted one year ago

Hi ConvolutedSealion94
Yes 🙂
Task.set_random_seed(my_seed=123) # disable setting random number generators by passing None task = Task.init(...)

  
  
Posted one year ago

Yeah, I found it, thanks.

I also found that you should have a deterministic ordering before you apply a fixed seed random sampling or else you will have a lot of head-scratching and assertion errors...

  
  
Posted one year ago
528 Views
3 Answers
one year ago
one year ago
Tags