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
NarrowSquirrel61
Moderator
2 Questions, 3 Answers
  Active since 18 February 2023
  Last activity one year ago

Reputation

0

Badges 1

3 × Eureka!
0 Votes
3 Answers
657 Views
0 Votes 3 Answers 657 Views
one year ago
0 Votes
2 Answers
609 Views
0 Votes 2 Answers 609 Views
one year ago
0 Hi, I Deployed A Clearml-Server Using Kind+Helm On A Linux Server For Personal Use. I Am Able To Log Stuff And Even Upload Artifacts And See Them In The Web App, However, I Want To Know Where In The Filesystem Are Those Artefacts Stored? If I Download An

Ok, so after a lot of digging, I found that the the extraMounts are actually mounting my local folder to the container, but I thought that setting the containerPath: /data would use that for all PVCs, but instead it stores in /var/local-path-provisioner as in the guide.

Now the next problem is, I set the containerPath:/var/local-path-provisioner , i.e. the default one, but now there are permission issues and the clearml server cannot start.

The docker daemon in my case is r...

one year ago
0 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. B...

one year ago