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
Unanswered
Hi, Is There A General Github Actions Workflow Just To Login Into Your Clearml App (Demo Or Server) So I Can Run Python Files Related To Clearml. I'Ve Seen Clearml-Actions-Train-Model And Clearml-Actions-Get-Stats And They Seem To Be Very Specific. Maybe


Yes, similar but via Github Actions for automation. Just wanted to know if there is an easier way to connect to clearml instead of creating a new workflow for any CI/CD purpose.

Aside from that, I tried cloning my task (pipeline) and enqueuing it to a clearml-agent.
filter = {'status': ['published'], 'order_by': ['-last_update'], 'type': ['controller']} pipeline_task = Task.get_tasks(project_name='clearmlsample/clearmlsample_pipeline/.pipeline', task_filter = filter) clone_task = Task.clone(source_task=pipeline_task[0], name = "Clone pipeline") Task.enqueue(task = clone_task.id, queue_name= 'agent')I already ran the pipeline a few times locally which works fine. However when I try cloning it, the stages seem to go missing and the pipeline ends instantly.

  
  
Posted one year ago
87 Views
0 Answers
one year ago
one year ago