Auto Structured Data Classification (A_DL_SDC)

This function creates an Automated Structured Data classifying model

These models are designed to classify structured data, such as predicting whether a customer will churn or not based on their purchase history.

Sample Request

Build an Auto Structured Data Classifier

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

Building an Auto Structured Data Classifier

Automated Model Construction

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

Request Body

Name
Type
Description

project_id*

int

The id of the current project

block_id*

int

The id of the current block

function_code*

string

The function code for current block

parent_id*

int

The id of the previous block

args*

object

Block arguments

max_trials

int

Maximum number of different models that will be tried

Sample Request

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

Training an Auto Structured Data Classifier

Automated Model Training

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

Request Body

Name
Type
Description

project_id*

int

The id of the current project

hyp_params

object

hyper parameters for model compilation and training

parent_id*

int

The id of the previous block

block_id*

int

The id of the current block

function_code*

The function code for current block

args*

object

Block arguments

model_name*

String

The name the model would be saved with

epochs

int

Number of iterations through the dataset

Predictions

Make predictions with the DL_ANN Predict block

Last updated

Was this helpful?