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
Profile picture
UpsetBlackbird87
Moderator
3 Questions, 8 Answers
  Active since 10 January 2023
  Last activity one year ago

Reputation

0

Badges 1

8 × Eureka!
0 Votes
13 Answers
947 Views
0 Votes 13 Answers 947 Views
Hi I’m trying out pipeline controller from tasks. I was not able to understand why my code results in just one task(the first one) in the pipeline. pipeline ...
2 years ago
0 Votes
2 Answers
919 Views
0 Votes 2 Answers 919 Views
Hi I was running an Hyperparameter Optimization task using the Optuna Optimizer and even though the HyperParameterOptimizer’s argument is set to max_number_o...
2 years ago
0 Votes
2 Answers
705 Views
0 Votes 2 Answers 705 Views
Hi, I have a question about queue management of ClearML Agents. I am still a beginner to ClearML and still discovering the potential it has and as of now it ...
3 years ago
0 Hi I’M Trying Out Pipeline Controller From Tasks. I Was Not Able To Understand Why My Code Results In Just One Task(The First One) In The Pipeline.

For some reason my code results in one node even though I think the logic above should result in a bipartite graph

2 years ago
0 Hi I’M Trying Out Pipeline Controller From Tasks. I Was Not Able To Understand Why My Code Results In Just One Task(The First One) In The Pipeline.

CostlyOstrich36 The commented section is the 3 layer part which I am not currently using due to the lag
` # def update_datasets(dataset_projects, parents, is_ppg=False):

current_steps = []

for dataset_project in dataset_projects:

dataset_project_split = dataset_project.split('-')

campaign_num = dataset_project_split[2]

parameters = {

'Args/XXX': args.XXX_template.replace('*', campaign_num),

'Args/XXX': args.XXX_template....

2 years ago
0 Hi I’M Trying Out Pipeline Controller From Tasks. I Was Not Able To Understand Why My Code Results In Just One Task(The First One) In The Pipeline.

AgitatedDove14 CostlyOstrich36 [FYI] I’m not sure if this is an optimization issue in ClearML or my computer’s issue but when I make the pipeline a tri-partite graph (add another parent layer) the DAG becomes weird (I think because of the lag) and the web app lags so much until I delete this pipeline in the web app a (I can’t interact will any nodes in the graph and switching between tasks takes a long time)

2 years ago