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, Does Anyone Know How To Clone Every Step Of A Pipeline To A Project? I'M Doing This To Save All Execution Results And Compare Them With Previous Versions. I Can Achieve This By Running My Pipeline.Py Script, But It Doesn'T Work When I Execute The Same

Hi, does anyone know how to clone every step of a pipeline to a project?
I'm doing this to save all execution results and compare them with previous versions.
I can achieve this by running my pipeline.py script, but it doesn't work when I execute the same pipeline on the ClearML web interface.
Below are my pipeline settings.

@PipelineDecorator.pipeline(
    project=dataset_name,
    name=f"{dataset_name} Training",
    target_project=dataset_name,
    pipeline_execution_queue=None,
)

if __name__ == "__main__":
    PipelineDecorator.set_default_execution_queue("default")
    pipeline(dataset_name)
  
  
Posted 6 days ago
Votes Newest

Answers


For others: None

  
  
Posted 5 days ago