Saimple Backend API v2 (2.0.0)
Download OpenAPI specification:Download
This page is a specification for the Saimple API.
- First, select the server which should handle the request. By default, the specification should access the development server.
- Acquire an authentication token using the
POST api/v2/authentification
route, as it is required by most of our API routes. To do that, you'll need to:- Copy the
access_token
value from the JSON response. - Paste it in the popup field which appear when clicking the 'Authorise' button on the right on the page, before the routes descriptions.
- Copy the
- Acquire an authentication token using the
- When using a local stack, be sure to use the same IP for Swagger and the accessed stack to avoid CORS issues.
- In case you'd want to use the Curl script, you may have to add the
--insecure
option to avoid certificate issues.
- In case you'd want to use the Curl script, you may have to add the
Create an evaluation
Allows the launch and creation of an evaluation object
Notes:
- Returns the created evaluation's identifier.
- This can be used to track the evaluation status using the
GET
route. - The evaluation status can be : in progress, done or failed.
Authorizations:
Request Body schema: application/json
analysisType | string Default: "float" Enum: "float" "double" "long double" "float128 | quad" The floating type to use - 'float' being the fastest and less precise & 'float128' or 'quad' being the slowest yet the most precise |
dataType required | string Enum: "Image" "TimeSeries" Indicates whether the evaluation will handle Image or TimeSeries data. The image format supported are : *.png, *.jpg, *.jpeg, *.tiff, *.raw " The TimeSeries format supported are :.csv or .npy |
description | string Description of the evaluation |
evaluationEngine | string Default: "fae" Enum: "fae" "fae_ts" "ad_svm" The internal evaluation engine to select |
force | boolean Default: false When enabled, the evaluation will ignore most errors or assert |
input required | string The input data file to use for this evaluation, either its name or its resource identifier |
inputDomain | Array of strings |
model required | string The model to use for this evaluation, either its name or its resource identifier |
name required | string The name associated with the evaluation |
required | object |
id | string Default: "" The evaluation Id. Normaly, should not be given here, as it will be generated |
postProcessing | boolean Default: true This flag enable a post processing when the abstraction analysis is finished. Currently it only works for classifier. It should be set to false for other model |
normalize | boolean Default: true When true, normalize from 0-255 to 0-1 - When set to false, use the input data as it is |
outputSelected | string The name of the tensor we want evaluated, can be used for early termination or to get to a point to restart from. |
sanityCheck | string Enable sanity control on the result, checking if the result from a concrete evaluation obtained through onnxruntime are contained in the abstract values obtained through the analysis. Possible values: none(disable), basic(check the final tensor), full(check all tensors after each operations) |
sanityTreshold | string The tolerance value for sanity check. Used as a relative value. |
startAt | string The layer where to start the analysis from in the model |
Responses
Request samples
- Payload
{- "analysisType": "double",
- "dataType": "Image",
- "description": "This is an example description",
- "evaluationEngine": "fae",
- "input": "735e766c-25a6-11ec-92f1-0242ac1c0004",
- "inputDomain": [
- "0",
- "255"
], - "model": "6c294368-25a6-11ec-a08e-0242ac1c0004",
- "name": "Evaluation Example for an image classifier",
- "noise": {
- "intensity": "0.0001",
- "mode": "BOKEH"
}, - "normalize": true
}
Response samples
- 200
- 500
{- "evalId": "571445e6-a245-11ed-bef3-02420a000089",
- "message": "Evaluation succesfully launched, a unique id was automatically assigned to it"
}
Get all evaluations
Allows the query of all evaluations.
Notes:
- This request wont return more than 100 evaluations at a time. The parameters are meant to be used to iterate with a pagination system.
- A first query will return the number of matching evaluations in the
nbResults
field. - Use
offset
parameter to specify the index of the first evaluation to be returned. - The
limit
parameter define the number of evaluations returned *for each query, it must be in the interval [1;100].
Authorizations:
query Parameters
filter (not implemented) | string Query syntax to be defined later |
limit | integer The number of evaluation to be returned (must be >0 and <= 100, default to 100) |
offset | integer The starting index for selecting the evaluations returned |
order_by | string (not implemented, default to |
Responses
Response samples
- 200
{- "evaluations": [
- {
- "workspace_path": "/Workspace/saimplev2",
- "modelId": "a8cab14e-e796-11ee-adaa-02420a0000d6",
- "inputId": "8c4194f8-e7a4-11ee-b3d4-02420a0000b3",
- "status": "IN_PROGRESS",
- "id": "d0afc0d0-f1b6-11ee-8ef9-02420a00002a",
- "creationDate": "2024-04-03T14:36:38.258676",
- "evaluationName": "sharp_clarke",
- "evaluationEngine": "fae",
- "postProcessing": false,
- "name": "test (Copy 2)",
- "description": "",
- "dataType": "TimeSeries",
- "inputDomain": [
- "0",
- "255"
], - "noise": {
- "intensity": "0.00001",
- "mode": "ADDITIVE"
}, - "analysisType": "float",
- "normalize": false,
- "startAt": "",
- "outputSelected": "",
- "sanityCheck": "",
- "sanityThreshold": "",
- "force": false,
- "endDate": null,
- "duration": null,
- "inputName": "correct.csv",
- "modelName": "model_cnn_detect_arythm.onnx"
}
], - "nbResults": 1
}
Get evaluation details from its ID
Returns all available information for an evaluation.
Note: This route has side effects:
- It will update the evaluation status by checking if the evaluation is finished or failed.
- It is also currently used to detect the end of the abstract evaluation:
- When it's done, it will implicitly triggers the relevant post-processing.
- When all post-processing are done, the status is updated accordingly.
Authorizations:
path Parameters
evalId required | string Example: 735e766c-25a6-11ec-92f1-0242ac1c0004 The evaluation's ID |
Responses
Response samples
- 200
{- "value": {
- "workspace_path": "/Workspace/saimplev2",
- "modelId": "a8cab14e-e796-11ee-adaa-02420a0000d6",
- "inputId": "8c4194f8-e7a4-11ee-b3d4-02420a0000b3",
- "status": "IN_PROGRESS",
- "id": "d0afc0d0-f1b6-11ee-8ef9-02420a00002a",
- "creationDate": "2024-04-03T14:36:38.258676",
- "evaluationName": "sharp_clarke",
- "postProcessing": false,
- "name": "test (Copy 2)",
- "description": "",
- "dataType": "TimeSeries",
- "inputDomain": [
- "0",
- "255"
], - "noise": {
- "intensity": "0.00001",
- "mode": "ADDITIVE"
}, - "analysisType": "float",
- "normalize": false,
- "startAt": "",
- "outputSelected": "",
- "sanityCheck": "",
- "sanityThreshold": "",
- "force": false,
- "evaluationEngine": "fae",
- "endDate": null,
- "duration": null,
- "inputName": "correct.csv",
- "modelName": "model_cnn_detect_arythm.onnx"
}
}
Delete an existing evaluation
Deletes an existing evaluation by its ID
Notes:
- This route will remove all ressources created during the evaluation and remove the corresponding reference for the model and input objects.
- This operation cannot be undone.
- It will not interrupt an evaluation and can only be used to remove the artifact and free disk space after the evaluation is finished.
Authorizations:
path Parameters
evalId required | string Example: hopeful_morse The evaluation's ID |
Responses
Get evaluation raw relevance
Returns the execution trace for the given evaluation.
Notes: The trace can be requested while the evaluation is still running, it can be used to monitor its progression. The "out" and "err" parameters are captured from the evaluation engine stdout and stderr stream. The layers informations is formated by the engine. The parsedStandardError is a formatted version of the 'err' field and might not contains all informations
Authorizations:
path Parameters
evalId required | string The evaluation's ID |
Responses
Response samples
- 200
{- "out": "string",
- "err": "string",
- "parsedStandardError": {
- "timeVInfo": { },
- "errorLines": [
- "string"
], - "stacktraces": [
- "string"
]
}, - "layersTrace": { }
}
Get evaluation dominance
Gets dominance for a given evaluation byt its ID
Notes:
- The dominance is mostly used with classifier models.
- This route returns the range of possible values for each predictions.
- It also gives the dominant class, if one of them was predicted with a class score always greater than all the others.
- The dominance computation is applied directly on the abstract domain and not on the returned interval.
- It's possible to have overlapping interval and to still obtain the dominance property.
Authorizations:
path Parameters
evalId required | string The evaluation's ID |
Responses
Response samples
- 200
{- "classes": [
- {
- "id": 0,
- "min": 0.4087343215942383,
- "max": 0.41489797830581665,
- "status": "Dominated"
}, - {
- "id": 1,
- "min": 0.0000052851514737994876,
- "max": 0.000005388831596064847,
- "status": "Dominated"
}, - {
- "id": 2,
- "min": 0.5850964188575745,
- "max": 0.5912600159645081,
- "status": "Dominant"
}, - {
- "id": 3,
- "min": 3.340790328820731e-7,
- "max": 3.409666931020183e-7,
- "status": "Dominated"
}, - {
- "id": 4,
- "min": 2.515270436376227e-9,
- "max": 2.5899780098370684e-9,
- "status": "Dominated"
}
]
}
Get evaluation raw relevance
Returns the raw relevance for an evaluation by its ID.
Notes: The raw relevance is the relative importance of each entry on the final result.
Example: For a classifier processing a image in 100 x 100 x 3
size and producing 10 classes score, this route will:
- return
10 x 100 x 100 x 3
values, which can be projected as 10 relevance image, one for each class, - then project those on the original image to observe the image feature relative impacts.
Authorizations:
path Parameters
evalId required | string The evaluation's ID |
query Parameters
svm_mode | string Enum: "hog" "square" Selection of the projection method of the relevance, either from an interpretation of the relevance computed from the hog edges or from the hog grid cell |
Responses
Response samples
- 200
{- "data": {
- "value": [
- [
- [
- 0.21324,
- "...",
- -0.4231
], - [
- "..."
], - [
- 0.90414,
- "...",
- -0.5851
]
]
]
}, - "shape": "(20, 30, 30)"
}
Get the list of all inputs
Returns a list of all inputs
Notes: The pagination mechanism is not yet implemented.
Authorizations:
Responses
Response samples
- 200
{- "inputs": [
- {
- "id": "b7a9c77e-c39d-11eb-a489-57b77f61e701",
- "creationDate": "26/05/2021-11:15:19",
- "originalFileName": "example_3.JPG",
- "fileName": "b7a9c77e-c39d-11eb-a489-57b77f61e701.jpg",
- "format": "Image",
- "evaluations": [ ]
}, - {
- "id": "e4174818-be02-11eb-965e-65d067e2ea43",
- "creationDate": "26/05/2021-11:15:19",
- "originalFileName": "example_5.JPG",
- "fileName": "e4174818-be02-11eb-965e-65d067e2ea43.jpg",
- "format": "Image",
- "evaluations": [
- "some_evalution_id"
]
}
]
}
Upload a new input data file
Allows upload of a new input
Notes:
- Input must have an extension in the following list:
- .jpg / .jpeg
- .png
- .tif / .tiff
- .raw
- .csv
- .npy
- On success, the route returns the ID associated with the uploaded input
Authorizations:
Request Body schema: multipart/form-data
An Image (.jpg, .jpeg, .png, .tif, .tiff .raw) or a TimeSeries (.csv, .npy) file to upload
filedata | object <binary> The binary file of the input data |
Responses
Request samples
- Payload
{ "multipart/form-data": { "files": { "filedata": "<example_image.jpg>" }, "reference": 5 } }
Response samples
- 201
{- "fileId": "111-222-333",
- "fileName": "mnist_0.jpg"
}
Get an input metadata
Returns the specified input metadata
Authorizations:
path Parameters
fileId required | string The file name or identifier of the specified input |
Responses
Response samples
- 200
- 300
{- "id": "e4174818-be02-11eb-965e-65d067e2ea43",
- "creationDate": "26/05/2021-11:15:19",
- "originalFileName": "example_5.JPG",
- "fileName": "e4174818-be02-11eb-965e-65d067e2ea43.jpg",
- "format": "Image",
- "evaluations": [ ]
}
Delete an existing input
Deletes the specified input and its data files
Note: The route itself allows the suppression of inputs that are being used by evaluations. This may render them inexploitable. The frontend application emits an alert and offers to delete the associated evaluations but not the API.
Authorizations:
path Parameters
fileId required | string The file name or identifier of the specified input |
Responses
Response samples
- 300
{- "message": "Error, too many files found with name : mnist_input.png",
- "locations": [
- "/api/v2/inputs/8cf960dc-d263-11eb-88d4-989096a74a30/meta",
- "/api/v2/inputs/8cff5424-d263-11eb-88d4-989096a74a30/meta"
], - "matching_ids": [
- "8cf960dc-d263-11eb-88d4-989096a74a30",
- "8cff5424-d263-11eb-88d4-989096a74a30"
]
}
Upload a new model file
Allows the upload of a compatible neural network model (*.h5, *.onnx) or svm (.npy)
Notes: On reception of the model, the backend will try to parse it to extract the model expected input shape. On reception, the model the backend will check is the same file already existe in the user workspace to avoid duplication. If the model already exist, the api return a http 200 response with the existing file id
Authorizations:
Request Body schema: multipart/form-data
The model file to upload
model | object <binary> |
Responses
Request samples
- Payload
{ "multipart/form-data": { "files": { "model": "<test.h5>" } } }
Response samples
- 200
- 201
{- "modelId": "222-333-444",
- "modelName": "mnist.h5"
}
Response samples
- 201
{- "models": {
- "models": [
- {
- "id": "e091d492-be02-11eb-965e-65d067e2ea43",
- "creationDate": "26/05/2021-11:15:13",
- "originalFileName": "Sign_language_Digits.h5",
- "fileName": "e091d492-be02-11eb-965e-65d067e2ea43.h5",
- "format": "keras",
- "source": null,
- "labels": null,
- "modelFingerprint": "a709666cd8efe575967d6fdf18b18e22",
- "modelSize"": 4577456,
- "evaluations": [ ],
- "inputShape": [
- 100,
- 100,
- 3
]
}, - {
- "id": "65d067e2-be02-11eb-965e-ea43e091d492",
- "creationDate": "22/03/2021-15:11:31",
- "originalFileName": "mnist.h5",
- "fileName": "65d067e2-be02-11eb-965e-ea43e091d492.h5",
- "format": "keras",
- "modelFingerprint": "a709666cd8efe575967d6fdf18b18e22",
- "modelSize"": 4577456,
- "source": null,
- "labels": null,
- "evaluations": [
- "some_eval_id"
], - "inputShape": [
- 28,
- 28,
- 1
]
}
]
}
}
Check that the given model is valid for the evaluation engine
Returns a json with an "ok" or "ko" value, indicating wether the model is supported or not by the evaluation engine.
If the status is "ko", a list of error is provided.
Authorizations:
path Parameters
modelId required | string The model's identifier |
Responses
Response samples
- 200
{- "file_version": "0.1",
- "status": "ok",
- "errors": [ ]
}
Get a model's metadata
Returns the specified model's metadata
Authorizations:
path Parameters
modelId required | string The model's identifier |
Responses
Response samples
- 201
- 300
{- "id": "e091d492-be02-11eb-965e-65d067e2ea43",
- "creationDate": "26/05/2021-11:15:13",
- "originalFileName": "Sign_language_Digits.h5",
- "fileName": "e091d492-be02-11eb-965e-65d067e2ea43.h5",
- "format": "keras",
- "modelFingerprint": "a709666cd8efe575967d6fdf18b18e22",
- "modelSize": 4577456,
- "source": null,
- "labels": null,
- "inputShape": [
- 100,
- 100,
- 3
], - "evaluations": [ ]
}
Delete an existing model
Deletes the specified model and its data files
Note: The route itself allows the suppression of models that are being used by evaluations. This may render them inexploitable. The frontend application emits an alert and offers to delete the associated evaluations but not the API.
Authorizations:
path Parameters
modelId required | string The model's identifier |
Responses
Response samples
- 300
{- "message": "Error: too many files found with name : fashion_mnist_duplicate.h5",
- "locations": [
- "/api/v2/models/8cf960dc-d263-11eb-88d4-989096a74a30/meta",
- "/api/v2/models/8cff5424-d263-11eb-88d4-989096a74a30/meta"
], - "matching_ids": [
- "8cf960dc-d263-11eb-88d4-989096a74a30",
- "8cff5424-d263-11eb-88d4-989096a74a30"
]
}
User authentication
Allows user authentication with login and password.
Notes:
- This route should be the first one called when starting a user session.
- Takes login/password as parameters.
- Returns a token used to check the user credentials, allowing them to access its workspace ressources (input, model, evaluations)...
Authorizations:
Request Body schema: application/json
login required | string The login used for authentication |
password required | string The password used for authentication |
Responses
Request samples
- Payload
{- "login": "saimplev2",
- "password": "saimplev2"
}
Response samples
- 200
{- "access_token": "XXX",
- "expires_in": 36000,
- "not-before-policy": 1635352754,
- "refresh_expires_in": 1800,
- "refresh_token": "YYY",
- "scope": "email profile",
- "session_state": "064a6909-7d25-4cdd-bb8e-1cb027ca4e42",
- "token_type": "Bearer"
}
Get supported layers
Gets the list of supported layers in the evaluation engine and their supported onnx versions.
Authorizations:
Responses
Response samples
- 200
{- "file_version": "0.2",
- "Description": "0.2",
- "Activation_functions": [
- {
- "act_fun_name": {
- "onnx_op_version": [
- 0
]
}
}
], - "binary_operators": [
- {
- "binop_name": {
- "onnx_op_version": [
- 0
]
}
}
], - "form_operators": [
- {
- "form_op_name": {
- "onnx_op_version": [
- 0
]
}
}
], - "layers": [
- {
- "layer_name": {
- "onnx_op_version": [
- 0
]
}
}
]
}
Get versions of the different Saimple entities
Gets the versions of the different Saimple entities.
Authorizations:
Responses
Response samples
- 200
{- "api": {
- "version": "4.0.0"
}, - "fae": {
- "build": "2021-09-30 - 16:59",
- "commit": "6f74047d490e71f61b8544a9015f933a1e77e608",
- "tags": [
- "tag1",
- "tag2"
], - "version": "0.91.1-21W36"
}, - "fae-libAD": {
- "build": "2021-09-30 - 16:58",
- "commit": "8bae5ffdc0340a775f6a0bae8c50724935f9c940",
- "tags": [
- "tag1",
- "tag2"
], - "version": "v0.91.1 - 21W36"
}, - "abstari": {
- "version": "v0.91.1 - 21W36",
- "additional_info": [
- ""
]
}
}
Get license informations of the different Saimple entities
Gets the license informations of the different Saimple entities.
Authorizations:
Responses
Response samples
- 200
{- "check_msg": "",
- "expiration_date": "",
- "hostid": "",
- "license_path": "",
- "license_check": "DISABLED",
- "product": "",
- "product_version": "",
- "start": "",
- "client": "",
- "is_valid": true
}