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 Question Regarding Clearml Task Initialization With Multithreading. I'M Using Python'S Joblib Library And The Parallel Class To Run An Experiment In Multiple Parallel Threads. The Experiment Runs To Completion But I Get Incomplete Mllogge

Hi all, I have a question regarding ClearML Task initialization with multithreading. I'm using Python's joblib library and the Parallel class to run an experiment in multiple parallel threads. The experiment runs to completion but I get incomplete MLLogger logs from the multithreaded run and also my child tasks are left in 'Draft' state while only the parent task runs and emits the incomplete logs. Was wondering if anyone had any suggestions or docs references for best practices in ClearML multithreaded logging with joblib and MLLogger? Thanks

  
  
Posted 4 months ago
Votes Newest

Answers


Hi @<1619867994005966848:profile|HungryTurtle13>

I'm using Python's joblib library and the Parallel class to run an experiment in multiple parallel threads.

I believe joblib creates subprocesses not threads, but yes you are correct,
Basically once Task.init is called, every forked/spawned process will be automatically logged to the main process Task (you can, and probably should call either Task.init or Task.current_task() from the forked processes, but this is just a detial)
The main limitation we cannot "patch" joblib before it spwans the multiple processes so every process knows that it has a "parent" Task to report to. Does that make sense ?

  
  
Posted 4 months ago
212 Views
1 Answer
4 months ago
4 months ago
Tags