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
Hey! I Have Task That Generates .Pth Files Locally And They'Re Visible On Webui, But Unfortunately I Can'T Fetch Them From My Local Computer, Is This Intended?

Hey!
I have task that generates .pth files locally and they're visible on WebUI, but unfortunately I can't fetch them from my local computer,
is this intended?

  
  
Posted 3 years ago
Votes Newest

Answers


Hi ObnoxiousStork61

but unfortunately I can't fetch them from my local computer,
is this intended?

By default ClearML will only log the wights files.
It can also automatically upload them, if you pass a destination for storage at Task.init/
For example, to store on the files server:
Task.init(..., output_uri=True)To store on S3 (sub folders will be created automatically based on the Task ID
Task.init(..., output_uri=' ')

  
  
Posted 3 years ago
802 Views
1 Answer
3 years ago
one year ago
Tags