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!

Hi everyone! 👋
I'm building a pipeline with PipelineController , and when I put Dataset.get , I got this message repeating itself a lot of time :
clearml - INFO - Dataset.get() did not specify alias. Dataset information will not be automatically logged in ClearML Server.
How can I stop getting it ?

  
  
Posted 10 months ago
Votes Newest

Answers


Hi @<1546303293918023680:profile|MiniatureRobin9>
This is the "regular" message when calling Dataset.get without an alias.
This means the Dataset is not registered on the Task itself, just give it a name (i.e. pass the alias argument to get )

  
  
Posted 10 months ago
488 Views
1 Answer
10 months ago
10 months ago
Tags