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 Everyone! I Am In The Process Of Moving From

πŸ‘‹ Hi everyone! I am in the process of moving from wandb to clearml . Is there a simple way to track gradients and parameters in a pytorch model as simple as wandb.watch ? If not, could you point me to a minimal working example with clearml ? Thank you.

  
  
Posted one year ago
Votes Newest

Answers 8


Thank you @<1523701070390366208:profile|CostlyOstrich36> Are the gradients automatically captured? I run this pytorch example from clearml and I don’t see the gradients in my workspace. Could you please elaborate?

  
  
Posted one year ago

Adding to the next version to do list! πŸ™‚

  
  
Posted one year ago

Hi @<1523705099182936064:profile|GrievingDeer61> ,

Everything coming from Pytorch should be automatically captured and detected. If there is something extra you want to log and track you can do it using the Logger module None

Specifically I think what you're looking for is:
None

  
  
Posted one year ago

@<1523705099182936064:profile|GrievingDeer61> if you see them in your Tensorboard they will be captured in ClearML as well.
wdyt?

EDIT
examples (tensorboard or tensorboardX):
None
None

  
  
Posted one year ago

My question is if there is an easy way to track gradients similar to

wandb.watch

@<1523705099182936064:profile|GrievingDeer61> not at the moment, but should be fairly easy to add.
Usually torch examples just use TB as a default logging, which would go directly to clearml , but this is a great idea to add
Could probably go straight to the next version πŸ™‚
wdyt?

  
  
Posted one year ago

Thank you @<1523701205467926528:profile|AgitatedDove14> My question is if there is an easy way to track gradients similar to wandb.watch I understand that there is no alternative in clearml

  
  
Posted one year ago

@<1523701205467926528:profile|AgitatedDove14> Thanks Martin. I think it will be a valuable addition to clearml . Thank you for your help.

  
  
Posted one year ago

πŸ‘

  
  
Posted one year ago
42 Views
8 Answers
one year ago
25 days ago
Tags