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 one year ago
Votes Newest

Answers 42


Actually, datasets should have an automatic preview...

  
  
Posted one year ago

What OS are you running the scripts on, Abed?

  
  
Posted one year ago

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

  
  
Posted one year ago

I am currently running the scripts on WSL ubuntu

  
  
Posted one year ago

22.04

  
  
Posted one year ago

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

  
  
Posted one year 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 one year 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 one year ago

My server is hosted on AWS Fargate

  
  
Posted one year ago

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

  
  
Posted one year ago

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

  
  
Posted one year ago

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

  
  
Posted one year ago