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
Task.Set_Parameters(Queue='Default') Controller = Pipelinecontroller(Name='My_Pipeline', Project='My_Project') Controller.Add_Step('Train', Train_Model, Parameter_Override=Pipeline_Params['Train']) Controller.Add_Step('Evaluate', Evaluate_Model, Parameter

task.set_parameters(queue='default')
controller = PipelineController(name='my_pipeline', project='my_project')
controller.add_step('train', train_model, parameter_override=pipeline_params['train'])
controller.add_step('evaluate', evaluate_model, parameter_override=pipeline_params['evaluate'])
controller.add_dependency(from_task='train', to_task='evaluate')

can anyone tell me what is the new method instead of add_dependency

  
  
Posted one year ago
Votes Newest

Answers 2


im trying to run a deeplearning pipeline

  
  
Posted one year ago

Hi @<1554275802437128192:profile|CumbersomeBee33> , can you elaborate on what you're trying to do?

  
  
Posted one year ago
497 Views
2 Answers
one year ago
one year ago
Tags