exasol / sagemaker-extension

An Exasol extension to interact with AWS SageMaker from inside the database
MIT License
3 stars 1 forks source link

Add CREATE SCRIPT statements for deployment of the training UDF #14

Closed tkilias closed 2 years ago

tkilias commented 2 years ago

Background

the CREATE STATEMENT would look like

CREATE PYTHON3 SET SCRIPT AutopilotTrainingUDF(model_name VARCHAR(23), ....)
EMITS (model_name VARCHAR(32)) AS
    from exasol_sagemaker_extension.autopilot_training_udf import AutopilotTrainingUDF

    udf = AutopilotTrainingUDF(exa)

    def run(ctx):
        udf.run(ctx)
/

Acceptance Criteria