Build config

Get the information relate to the building of the model

get

Get the configuration of the model building process

Path parameters
modelIdstringRequired

Name of the model

Example: 3c6e4cb4-9b74-40c8-8f4a-132c9d5e4ace.h5
Responses
200
Successful operation
application/json
get
GET /strongcourage/MAIP/v1/models/{modelId}/build-config HTTP/1.1
Host: virtserver.swaggerhub.com
Accept: */*
200

Successful operation

{
  "buildConfig": {
    "datasets": [
      {
        "datasetId": "my-dataset-01",
        "isAttack": true
      }
    ],
    "training_ratio": 0.7,
    "training_parameters": {
      "nb_epoch_cnn": 2,
      "nb_epoch_sae": 5,
      "batch_size_cnn": 32,
      "batch_size_sae": 16
    }
  }
}