User-defined Functions

    Currently, it supports two kinds of Python user-defined functions: the general Python user-defined functions which process data one row at a time and which process data one batch at a time.

    有时候,我们想在 UDF 中只载入一次资源,然后反复使用该资源进行计算。例如,你想在 UDF 中首先载入一个巨大的深度学习模型,然后使用该模型多次进行预测。

    假如你定义了如下 Python 自定义函数: