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, I'M Really Enjoying The Clearml Experience And We'Re Using It Very Successfully At Work. I Have A Small Question Though: I'M Trying To Set The "File_History_Size" Sdk Parameter From Python Code Instead Of The Conf File. Is That Possible? Thanks!

Hello,
I'm really enjoying the ClearML experience and we're using it very successfully at work. I have a small question though: I'm trying to set the "file_history_size" sdk parameter from python code instead of the conf file. Is that possible? Thanks!

  
  
Posted 3 years ago
Votes Newest

Answers 7


Hi Torben, thats great to hear! Which of the new features seems the most helpful to your own use case? Btw to your question the answer is yes. But I'm not exactly sure whats the pythonic way of doing that. AgitatedDove14 ?

  
  
Posted 3 years ago

hi,
we're liking all the small the improvements to the ui a lot (like the scrollbar, new controls/shortcuts for the scalar plots). And it was pretty good when it was still trains ;)

  
  
Posted 3 years ago

They could, the problem by the time you set them,they have been read into the variables.
Maybe we should make it lazy loaded, it will also speedup the import.

  
  
Posted 3 years ago

Thank you AgitatedDove14 I'm trying it now but I think it works. Effectively it would be convenient for us if all the .conf parameters could be also set programmatically when initialising the Task from python.

  
  
Posted 3 years ago

Hi DisturbedWalrus17
This is a bit of a hack, but will work:
from clearml.backend_interface.metrics.events import UploadEvent UploadEvent._file_history_size = 10Maybe we should expose it somewhere, what do you think?

  
  
Posted 3 years ago

I expected it wouldn't be that easy. Thank you for explaining. It would be useful to have a unified python interface for the config parameters.

  
  
Posted 3 years ago

That's always nice to hear. Remember that many of these improvements came from the community and you can always submit a feature request on our github repo https://github.com/allegroai/clearml/issues

  
  
Posted 3 years ago
624 Views
7 Answers
3 years ago
one year ago
Tags