Skip to content

Instantly share code, notes, and snippets.

@FrancescAlted
Created September 12, 2022 07:17
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save FrancescAlted/262993a98e6b9e34f8b6cc4d436a4595 to your computer and use it in GitHub Desktop.
Save FrancescAlted/262993a98e6b9e34f8b6cc4d436a4595 to your computer and use it in GitHub Desktop.
@udf.scalar()
def square_filter(val: udf.float32) -> udf.float32:
if val >= 0.5:
return 1.
return math.nan
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment