General AutoDL Blocks (A_DL_ALL)

This function loads and uses pre-trained AutoDL models to perform actions such as model evaluation and value prediction.

After training auto models, you'd have to use them of course. Blocks in this category are the right tools for the job. They are compatible with all AutoDL models, thanks to our dynamic approach to handling them

Evaluating an Automated Deep Learning Model

{
    "project_id": 1,
    "parent_id": 8,
    "block_id": 9,
    "function_code": "A_DL_ALL_E",
    "args": {
        "hyp_params": {
            "batch_size": 32
        }
    }
}

Parameter Details

AutoDL Evaluating

POST

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": {}
    }
}

Predicting with an Automated Deep Learning Model

{
    "project_id": 1,
    "parent_id": 8,
    "block_id": 9,
    "function_code": "A_DL_ALL_P",
    "args": {
        "test_data": ""
    }
}

Parameter Details

AutoDL Predict

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

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": {}
    }
}

// Some code

Last updated