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
Hi Is There Any Option To Get Preview For The Images On Dataset In Case Upload With

Hi
is there any option to get Preview for the images on dataset in case upload with --links ?

  
  
Posted one year ago
Votes Newest

Answers 4


--verbose should print the reporting
what i want is to be able to see some images on the clearml server
same as when i upload the data as --files

  
  
Posted one year ago

AstonishingRabbit13 If I'm not mistaken, you can add images to the preview tab by reporting them as debug samples.

So you'd run: dataset.get_logger().report_image() or report_media()
This is not scalable though, so don't expect the server to handle millions of images well, for that you'd need Hyperdatasets 🙂
But it works well (as the name suggests) for some previews of the images!

Relevant docs:
https://clear.ml/docs/latest/docs/references/sdk/dataset/#get_logger
https://clear.ml/docs/latest/docs/references/sdk/logger/#report_image

  
  
Posted one year ago

Have you tried --verbose ?

  
  
Posted one year ago

I'm not sure about the preview part but after uploading I think you might find the images with list and --filter
https://clear.ml/docs/latest/docs/clearml_data/clearml_data_cli#list
I'm not sure if that helps?

  
  
Posted one year ago