Artificial Neural Network (DL_ANN)
This function creates and uses a model consisting of layers of interconnected nodes (neurons) that process input data and produce output predictions.
Sample Request
{
"project_id": 1,
"parent_id": 7,
"block_id": 8,
"function_code": "DL_ANN_S_I",
"args": {
"layer_list": [
{
"type": "conv2d",
"filters": 32,
"kernel_size": [3, 3],
"padding": "valid",
"activation": "relu"
},
{
"type": "maxpooling2d",
"pool_size": [2, 2]
},
{
"type": "upsampling2d",
"size": [2, 2]
},
{
"type": "flatten"
},
{
"type": "dropout",
"rate": 0.5,
},
{
"type": "embedding",
"input_dim": 1000,
"output_dim": 64
},
{
"type": "lstm",
"units": 64,
"return_sequences": false
},
{
"type": "batchnormalization",
{
"type": "dense",
"units": 1,
"activation": "sigmoid"
}
]
}
}Building a Sequential Artificial Neural Network
Sequential ANN Construction
Request Body
Name
Type
Description
Sample Request
Training an Artificial Neural Network
ANN Training
Request Body
Name
Type
Description
Sample Request
Evaluating an Artificial Neural Network
ANN Evaluating
Request Body
Name
Type
Description
Sample Request
Predicting with an Artificial Neural Network
ANN Predict
Request Body
Name
Type
Description
Last updated