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
Hello, For Datasets, Is There An Explanation Somewhere As To How The Debug Samples Are Created? I'M Not Entirely Sure Which Permission It Uses If The Dataset Is Stored In A Private Bucket

Hello, for Datasets, is there an explanation somewhere as to how the Debug Samples are created? I'm not entirely sure which permission it uses if the dataset is stored in a private bucket 🤔 Thank you!

  
  
Posted one year ago
Votes Newest

Answers 2


Thank you SmugDolphin23 !

  
  
Posted one year ago

Hi ShortElephant92 ! Random images, audio files, tables (trimmed to a few rows) are sent as Debug Samples for preview. By default, they are sent to our servers. Check this function if you wish to log the samples to another destination https://clear.ml/docs/latest/docs/references/sdk/logger/#set_default_upload_destination .
You could also add these entries in you clearml.conf to not send any samples for preview:
sdk.dataset.preview.tabular.table_count: 0 sdk.dataset.preview.media.image_count: 0 sdk.dataset.preview.media.video_count: 0 sdk.dataset.preview.media.audio_count: 0 sdk.dataset.preview.media.html_count: 0

  
  
Posted one year ago
713 Views
2 Answers
one year ago
one year ago
Tags