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
Hey Community!, I Am Trying To Run A Pipeline Using Pipeline Decorator In Two Steps , Now In My First Step I Am Trying To Import A Custom Python File Which Is Already Pushed To My Repository Online, I Am Executing The Pipeline Remotely But Still I Am Gett

Hey Community!,
I am trying to run a pipeline using pipeline decorator in two steps , now in my first step I am trying to import a custom python file which is already pushed to my repository online, I am executing the pipeline remotely but still I am getting an import error .Can anyone help me with this..????
image

  
  
Posted one year ago
Votes Newest

Answers 7


Still showing the same error
image

  
  
Posted one year ago

I have a json file specifying some required input for my executing pipeline function. So how can I give that to connect the pipeline to my input

  
  
Posted one year ago

How to read a params file in pipeline decorater can you help me with this as well??

  
  
Posted one year ago

Hi @<1533619725983027200:profile|BattyHedgehong22> , does the package appear in the installed packages section of the experiment?

  
  
Posted one year ago

What do you mean read params file?

  
  
Posted one year ago

Is their anything similar to this in a Pipeline Decorator.

Task.current_task().connect_configuration('my_conf.json', name="my conf file")
  
  
Posted one year ago

The syntax should be something like from <PACKAGE> import data

  
  
Posted one year ago