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 Everyone! I Cannot Create A Dataset. Is This A Limitation Of The Free Version? Error: Datasets Are Not Supported With Your Current Clearml Server Version. Please Update Your Server.

👋 Hi everyone! I cannot create a Dataset.
Is this a limitation of the free version?

Error: Datasets are not supported with your current ClearML server version. Please update your server.

  
  
Posted one year ago
Votes Newest

Answers 14


How can I find out the cause of the error?
Can you look at Colab? Maybe some library not loaded?

  
  
Posted one year ago

That's a good question ))) I don't know ))

  
  
Posted one year ago

no

  
  
Posted one year ago

It sounds like you didn't set up your config. Did you ever initialize clearml?

  
  
Posted one year ago

I didn't connect the ClearML server separately.

  
  
Posted one year ago

It worked! Thanks again!

  
  
Posted one year ago

Error: Datasets are not supported with your current ClearML server version. Please update your server.

  
  
Posted one year ago

What version of ClearML server are you using?

  
  
Posted one year ago

You might want to start with the first steps guide then:
None

  
  
Posted one year ago

Are you self hosting a ClearML server?

  
  
Posted one year ago

no

  
  
Posted one year ago

Thank you! I'll write about the results.

  
  
Posted one year ago

Hyperdatasets are the only ones that require a premium. If you're using normal datasets it should be fine.

  
  
Posted one year ago

!pip install clearml

from clearml import Dataset

dataset = Dataset.create(
dataset_name="cifar_dataset",
dataset_project="dataset examples"
)

  
  
Posted one year ago