79074962

Date: 2024-10-10 14:47:09
Score: 1
Natty:
Report link

kubeflow pipeline components can accept and pass types of artifacts, according to their documentation.

You can change your code to the following to stop this error:

from kfp.dsl import Dataset, Artifact

@kfp.dsl.component
def turn_window_generator(df: Dataset) -> Artifact:
....
    return wide_window
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: JHow