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
Hello All. I'M Trying To Figure Out How To Get The Task From Pipelines Listed Under The Experiments Tab Or At Least In A Place That'S Easier To Find. I'M Running A Pipeline Based On Tasks And If I Look At The

Hello all.

I'm trying to figure out how to get the task from pipelines listed under the experiments tab or at least in a place that's easier to find. I'm running a pipeline based on tasks and if I look at the info section of the task I get the following:

PROJECT:
[LTV] Lifetime Value Model 

When I created a pipeline based on those tasks the tasks don't appear in the PROJECT / [LTV] Lifetime Value Model experiment view for some reasons. They do appear in the PROJECT / All Experiments section and when I look at their info I get the following:

PROJECT:
[LTV] Lifetime Value Model/.pipelines/Pipeline Test

The code I'm using to create the pipeline object:

    pipe = PipelineController(
        name="Pipeline Test",
        project=cfg.clearml.project_name,
        version="0.0.1",
        add_pipeline_tags=False,
    )

The code I use to find the experiment and add it as a step:

        pipe.add_step(
            name=first_stage_name,
            base_task_project=cfg.clearml.project_name,
            base_task_name="Training",
            parameter_override={
                "Hydra/countries": country,
            },
  
  
Posted 10 months ago
Votes Newest

Answers


Hi @<1545216070686609408:profile|EnthusiasticCow4> , go into settings -> configuration, there is an option to show hidden projects. This way you should be able to view pipelines in the experiments view

  
  
Posted 10 months ago