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
Do Pandas

Do pandas pd.DataFrame s work with caching for Pipeline Components?

I seem to be coming up against a weird issue where List[pd.DataFrame] is cached properly but pd.DataFrame is not.
Is this a known bug? Or is this desired behaviour?

  
  
Posted one year ago
Votes Newest

Answers 3


Is there a rule whereby only python native datatypes can be used as the “outer” variable?

I have a dict of numpy np.array s elsewhere in my code and that works fine with caching.

  
  
Posted one year ago

I am using the PipelineDecorator form of the pipeline and I am passing arguments as function arguments to the pipeline components

  
  
Posted one year ago

Hi @<1523701079223570432:profile|ReassuredOwl55> , how are you saving them? Are they are saved as artifacts?

  
  
Posted one year ago
585 Views
3 Answers
one year ago
one year ago
Tags