Get the configuration of the model building process
Name of the model
"3c6e4cb4-9b74-40c8-8f4a-132c9d5e4ace.h5"
Successful operation
const response = await fetch('https://virtserver.swaggerhub.com/strongcourage/MAIP/v1/models/{modelId}/build-config', { method: 'GET', headers: {}, }); const data = await response.json();
{ "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 } } }