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
If I Am Using The Demo Servers, Do I Need To Do Something Special To Use

If I am using the demo servers, do I need to do something special to use report_image ?

  
  
Posted 3 years ago
Votes Newest

Answers 11


the images do not show up in debug_samples. How can I check what is wrong?

  
  
Posted 3 years ago

AgitatedDove14 FYI: I am using pytorch

  
  
Posted 3 years ago

there was a problem with index order when converting from pytorch tensor to numpy array

  
  
Posted 3 years ago

Hi HealthyStarfish45

  1. is there an advantage in using tensorboard over your reporting?

Not unless your code already uses TB or has some built in TB loggers.

html reporting looks powerfull, can one inject some javascript inside?

As long as the JS is self contained in the html script, anything goes :)

  
  
Posted 3 years ago

AgitatedDove14 thanks for the additional information:
yes, the report_image problem was resolved after I reordered dimensions in the tensor. is there an advantage in using tensorboard over your reporting? html reporting looks powerfull, can one inject some javascript inside?

  
  
Posted 3 years ago

👍

  
  
Posted 3 years ago

HealthyStarfish45
No, it should work 🙂

  
  
Posted 3 years ago

since I am using the demo server, I should make sure that in the configuration file the images will be uploaded to the appropriate server, right? Can you please point me to the proper line in the config file?

  
  
Posted 3 years ago

FYI: These days TB became the standard even for pytorch (being a stand alone package), you can actually import it from torch.
There is an example here:
https://github.com/allegroai/trains/blob/master/examples/frameworks/pytorch/pytorch_tensorboard.py

HealthyStarfish45 did you manage to solve the report_image issue ?
BTW: you also have
https://github.com/allegroai/trains/blob/master/examples/reporting/html_reporting.py
https://github.com/allegroai/trains/blob/master/examples/reporting/media_reporting.py

  
  
Posted 3 years ago

ok, there is probably a problem on my side, because when I ran the sample code from the repo it works, sorry to bother you

  
  
Posted 3 years ago

there was a problem with index order when converting from pytorch tensor to numpy array

HealthyStarfish45 I'm assuming you are sending numpy to report_image (which makes sense) if you want to debug it, you can also test tensorboard add_image or matplotlib imshow. both will send debug images

  
  
Posted 3 years ago