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
CostlyStork20
Moderator
1 Question, 2 Answers
  Active since 30 September 2023
  Last activity 7 months ago

Reputation

0

Badges 1

2 × Eureka!
0 Votes
3 Answers
498 Views
0 Votes 3 Answers 498 Views
7 months ago
0 Hi. I Am Sure This Has Been Asked Before But I Cannot Find It Searching The Past 90 Days Here Or The Web. Can I Ingest Old Tensorboard Logs Into Clearml From Historical Runs (Before I Started Using Clearml)? I'Ll Put Chatgpt'S Answer In The Thread Here

ChatGPT said:

For Completed Runs:

  • If you have a completed run with TensorBoard logs and want to load it into ClearML after the fact, the process isn't as straightforward. ClearML is designed to capture and log data during the run when integrated with the script.
  • However, one workaround is to create a new script that initializes a ClearML task and then manually logs each TensorBoard entry to ClearML using ClearML's logging methods. You'd need to parse the TensorBoard logs manually a...
7 months ago