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 Large Dataset And Have Preprocessed It And Saved Each Item In .Pt Files, Which Are Loaded Using

Hi all - I have a large dataset and have preprocessed it and saved each item in .pt files, which are loaded using torch.load in my Dataset . The issue is that ClearML thinks these are input models and tries to log them. I think this is making my training slow due to a whole bunch on unnecessary logging.

It seems like it's possible to turn off this behavior in Task.init() : None

However, I'm adding my tasks to a queue using the CLI, and I'm not seeing an option to disable this: None

Is there a way to disable this in the CLI?

  
  
Posted 2 days ago
Votes Newest

Answers 3


Hi @<1724960464275771392:profile|DepravedBee82> , you have the auto_connect_frameworks parameter in Task.init() , this way you can disable the auto connection to Pytorch
None

  
  
Posted 2 days ago

Also is there a way to disable this by default?

The reason I ask is that I want to send many jobs to a queue via the CLI. so I don't really want to be messing around with Task.init() .

I've even tried renaming my files to *pth and *.data to stop this behaviour

  
  
Posted one day ago

Thanks John, but is there a way to do this via the CLI?

Or is Task.init() the only way?

  
  
Posted 2 days ago
10 Views
3 Answers
2 days ago
one day ago
Tags