Documentation
    Preparing search index...
    type ModelPattern = {
        configuration_workflow: (req: Req) => AbstractWorkflow;
        hyperparameter_fields: (
            { configuration, table, }: {
                configuration: GenObj;
                table: AbstractTable;
            },
        ) => FieldLike[];
        predict: (
            { id, model, hyperparameters, fit_object, rows, }: {
                fit_object: any;
                hyperparameters: GenObj;
                id: number;
                model: { configuration: GenObj };
                rows: Row[];
            },
        ) => Promise<GenObj[]>;
        prediction_outputs: (
            { configuration, }: { configuration: GenObj },
        ) => FieldLike[];
        train: (
            { table, configuration, hyperparameters, state, }: {
                configuration: GenObj;
                hyperparameters: GenObj;
                state: GenObj;
                table: AbstractTable;
            },
        ) => Promise<any>;
    }
    Index

    Properties

    configuration_workflow: (req: Req) => AbstractWorkflow
    hyperparameter_fields: (
        { configuration, table, }: {
            configuration: GenObj;
            table: AbstractTable;
        },
    ) => FieldLike[]
    predict: (
        { id, model, hyperparameters, fit_object, rows, }: {
            fit_object: any;
            hyperparameters: GenObj;
            id: number;
            model: { configuration: GenObj };
            rows: Row[];
        },
    ) => Promise<GenObj[]>
    prediction_outputs: (
        { configuration, }: { configuration: GenObj },
    ) => FieldLike[]
    train: (
        { table, configuration, hyperparameters, state, }: {
            configuration: GenObj;
            hyperparameters: GenObj;
            state: GenObj;
            table: AbstractTable;
        },
    ) => Promise<any>