William Grisaitis
02/23/2023, 10:05 PMdef make_thing(df1: pd.DataFrame, df2: pd.DataFrame, param1, param2) -> pd.DataFrame: ...
, and i want to use dagster to call these and memoize results.
EDIT: made this question shorter 🙂claire
02/25/2023, 12:05 AMmake_thing
functions can change each time.@op
def my_make_thing_fn(input_1, input_2):
return make_thing(input_1, input_2):
if you want to use your functions within jobs without decorating them.William Grisaitis
02/28/2023, 11:44 PMclaire
02/28/2023, 11:45 PM