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
GorgeousMonkey78
Moderator
3 Questions, 6 Answers
  Active since 22 March 2023
  Last activity 6 months ago

Reputation

0

Badges 1

6 × Eureka!
0 Votes
3 Answers
461 Views
0 Votes 3 Answers 461 Views
Hi everyone, how do I integrate sagemaker with clearml , currently I only see wandb integrated with the hugging face and don't see any tutorials on clearml ,...
6 months ago
0 Votes
5 Answers
575 Views
0 Votes 5 Answers 575 Views
Any issues with the clearml website , it shows fetch all projects users and experiments failed and is very slow
12 months ago
0 Votes
6 Answers
835 Views
0 Votes 6 Answers 835 Views
I have been facing this issue "ClearML Monitor: Could not detect iteration reporting, falling back to iterations as seconds-from-start" due to which the enti...
one year ago
0 I Have Been Facing This Issue "Clearml Monitor: Could Not Detect Iteration Reporting, Falling Back To Iterations As Seconds-From-Start" Due To Which The Entire Training Gets Stuck Any Ways To Solve It?

def main(args):

# print( OmegaConf.to _yaml(args))
if args.use_clearml:
task = Task.init(
project_name=args.trainer.project,
task_name=args.trainer.description,
reuse_last_task_id=False,
)

task.connect_configuration(vars(args), name="args_config")

if __name__ == "__main__":
_config_path = "configs/yaml_files/akshay/"
_config_name = "student"
...

one year ago
0 I Have Been Facing This Issue "Clearml Monitor: Could Not Detect Iteration Reporting, Falling Back To Iterations As Seconds-From-Start" Due To Which The Entire Training Gets Stuck Any Ways To Solve It?

if i run it without the Task.init then clearml wont run right? it works fine if i comment out this section for my main code
task = Task.init(
project_name=args.trainer.project,
task_name=args.trainer.description,
reuse_last_task_id=False,
)

task.connect_configuration(vars(args), name="args_config")

one year ago