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
Hey Guys, In A Fresh Self-Hosted Clearml Server I Have The Issue That I Cannot See Any Preview Images Of The Files In A Dataset. It Seems Like A Bug, But Maybe I Am Doing Something Wrong?

Hey guys, in a fresh self-hosted ClearML server I have the issue that I cannot see any preview images of the files in a dataset. It seems like a bug, but maybe I am doing something wrong? https://github.com/allegroai/clearml/issues/879 - does someone have an idea what I might be doing wrong?

  
  
Posted 2 years ago
Votes Newest

Answers 42


Actually, datasets should have an automatic preview...

  
  
Posted 2 years ago

What OS are you running the scripts on, Abed?

  
  
Posted 2 years ago

I have been using them for a while, they've always had autopreviews.

  
  
Posted 2 years ago

I am currently running the scripts on WSL ubuntu

  
  
Posted 2 years ago

22.04

  
  
Posted 2 years ago

Hmm my bad, I wasn't aware of this 🙂

  
  
Posted 2 years ago

This is how I usually add visualization

#Report data preview
ds.get_logger().report_table(title="Data Sample", series="First Ten Rows", table_plot=data1[:10])
ds.upload()
ds.finalize()
  
  
Posted 2 years ago

So I added the snippet above to the code,
and now the preview for the first 10 rows shows up. However, the automatic preview is still not working.

  
  
Posted 2 years ago

My server is hosted on AWS Fargate

  
  
Posted 2 years ago

@<1523701168822292480:profile|ExuberantBat52> Do you have pandas installed on your machine?

  
  
Posted 2 years ago

Yes, I am using a virtualenv that has pandas and clearml installed.

  
  
Posted 2 years ago

What if you add images to the dataset? Can you see them being previewed? @<1523701168822292480:profile|ExuberantBat52>

  
  
Posted 2 years ago