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
Unanswered
Ok, I Am Facing Another Issue In Setting Up My Local Server. I Have It Running Almost Ok, I Can Report Stuff, And Upload Artifacts And They Are Properly Being Stored In The Fileserver Location. I Tried Uploading A Json, Image, And Audio File. All Have Be


m = np.eye(256, 256, dtype=np.float64)
m = np.eye(256, 256, dtype=np.uint8) * 255
m = np.concatenate((np.atleast_3d(m), np.zeros((256, 256, 2), dtype=np.uint8)), axis=2)
logger.report_image(
    "image", 
    "image color red", 
    iteration=0, 
    image=m
)

logger.report_media(
    'audio', 'audio wav', iteration=0,
    local_path='/path/to/audio.wav'
)

This was how I was doing it as shown in the doc examples, btw, it works if I report some scalars before reporting any media. But if I report the media first, then the webUI doesnt show the media, but it gets uploaded to the fileserver.

  
  
Posted one year ago
105 Views
0 Answers
one year ago
one year ago