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
Btw: There Seems To Be No Support For Videos In Tensorboard/Experiment View (E.G.

Btw: There seems to be no support for videos in tensorboard/experiment view (e.g. https://tensorboardx.readthedocs.io/en/latest/tensorboard.html#tensorboardX.SummaryWriter.add_video ) I only see a black/white image when using add_video
It would be cool to get a GIF as in tensorboard or even better a small mp4

  
  
Posted 3 years ago
Votes Newest

Answers 16


Based on https://github.com/lanpa/tensorboardX/blob/34d1616c035faaa0f3f7c9d19cb8bb4425f19939/tensorboardX/summary.py#L355 I would guess that it is already encoded before added to the tensorboard summary.

  
  
Posted 3 years ago

Well if we the "video" from TB is not in mp4/gif format than someone will have to encode it.
I was just pointing that for the encoding part we might need additional package

  
  
Posted 3 years ago

ReassuredTiger98 in theory it should work, do you know what is actually stored ? (I mean reencoding it means you have to have opencv / ffmpeg which might be too much to ask)

  
  
Posted 3 years ago

You mean I should have opencv/ffmpeg available on the clearml-server machine?

  
  
Posted 3 years ago

adding this to the ever expanding list of "nice to have" features 👍

  
  
Posted 3 years ago

ReassuredTiger98 I think it is using moviepy for the encoding... No?

  
  
Posted 3 years ago

ReassuredTiger98 do you know if tensorboard (not tensorboardX) also supports gif there ?

  
  
Posted 2 years ago

I guess this is the current way to do it: https://github.com/tensorflow/tensorboard/issues/39#issuecomment-568917607 so I would say: Yes, it supports gif.

  
  
Posted 2 years ago

Ohh then we can definitely support it, could you maybe post a toy example for testing? Or even better PR it to the examples/tensorboardX folder?

  
  
Posted 3 years ago

Yea, tensorboardX is using moviepy.

  
  
Posted 3 years ago

Sure, no problem!

  
  
Posted 3 years ago

Thanks!

  
  
Posted 3 years ago

👍

  
  
Posted 2 years ago
666 Views
16 Answers
3 years ago
one year ago
Tags