Auto Structured Data Regression (A_DL_SDR)

This function creates an Automated Structured Data regression model

This is a type of machine learning model that is designed to predict a continuous numerical output based on a set of input features that are structured in a tabular format.

Sample Request

Build an Auto Structured Data Regressor

{
    "project_id": 1,
    "parent_id": 7,
    "block_id": 8,
    "function_code": "A_DL_SDR_I",
    "args": {
    "hyp_params":{
            "max_trials": 1
        }
    }
}

Building an Auto Structured Data Regressor

Automated Model Construction

POST https://autogon.ai/api/v1/engine/start

Request Body

{
    "status": "true",
    "message": {
        "id": 8,
        "project": 1,
        "block_id": 8,
        "parent_id": 7,
        "dataset_url": "",
        "x_value_url": "",
        "y_value_url": "",
        "x_train_url": "",
        "y_train_url": "",
        "x_test_url": "",
        "y_test_url": "",
        "output": {}
    }
}

Sample Request

Compile and train the pre-built SDR model, using passed in Hyper Parameters

{
    "project_id": 1,
    "parent_id": 8,
    "block_id": 9,
    "function_code": "A_DL_SDR_T",
    "args": {
        "model_name": "titanic_model",
        "hyp_params":{
            "epochs": 10
        }
    }
}

Training an Auto Structured Data Regressor

Automated Model Training

POST https://autogon.ai/api/v1

Request Body

{
    "status": "true",
    "message": {
        "id": 9,
        "project": 1,
        "block_id": 9,
        "parent_id": 8,
        "dataset_url": "",
        "x_value_url": "",
        "y_value_url": "",
        "x_train_url": "",
        "y_train_url": "",
        "x_test_url": "",
        "y_test_url": "",
        "output": {}
    }
}

Predictions

Make predictions with the DL_ANN Predict block

// Some code

Last updated