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 Team, I Am Runing Script Which Fetch The Data From Clearml Server, I Am Getting This Information "Clearml - Info - Dataset.Get() Did Not Specify Alias. Dataset Information Will Not Be Automatically Logged In Clearml Server" .Please Can Any One Tell Me

Hi Team, i am runing script which fetch the data from clearml server, i am getting this information "clearml - INFO - Dataset.get() did not specify alias. Dataset information will not be automatically logged in ClearML Server" .please can any one tell me how can i resolve this.

  
  
Posted one year ago
Votes Newest

Answers 3


alias : "Alias of the dataset. If set, the ‘alias : dataset ID’ key-value pair will be set under the hyperparameters section ‘Datasets’"

I have to concede that I found that description a bit vague at first but if you check that https://clear.ml/docs/latest/docs/clearml_data/best_practices#organize-datasets-for-easier-access you see that:

"In cases where you use a dataset in a task (e.g. consuming a dataset), you can easily track which dataset the task is using by using Dataset.get 's alias parameter. Pass alias=<dataset_alias_string> , and the task using the dataset will store the dataset’s ID in the dataset_alias_string parameter under the task's CONFIGURATION > HYPERPARAMETERS > Datasets section."

  
  
Posted one year ago

Hi SuperiorCockroach75 , please look here:
https://clear.ml/docs/latest/docs/references/sdk/dataset#datasetget
To solve the issue simply specify the alias.

  
  
Posted one year ago

Hi CostlyOstrich36 I already given alias.
dataset = Dataset.get(
dataset_project=global_config.PROJECT_NAME,
dataset_name='raw_asteroid_dataset',
alias='my_raw_dataset')

  
  
Posted one year ago
581 Views
3 Answers
one year ago
one year ago
Tags