User documentation
Last updated
Last updated
The Protocol Deviation (PD) Classifier is a microservice system designed to handle requests over a specified server and port. By default, the service starts on the local server's IP address and runs on port 8088. Please contact your local IT support for details about the service.
The API supports only the following message
POST request. This request returns a predicted classification for the given text query. The request should be formatted as follows:
For a single query string:
For multiple query strings:
Replace "text_to_be_queried" with the desired input text, and "num_predictions" with the desired number of predictions for each query string. The "num_predictions" parameter is optional and defaults to 1, with a maximum limit of 64.
The previous text should be incorporated into an API client, such as a custom application or an operating system command like curl
. The following example demonstrates usage with curl
:
Note
Queries should be made to the path /prediction
. Requests to a different path or incomplete requests will generate an error response. In this example, localhost
and 8088
correspond to the server's IP address and service port, respectively. Please consult your local IT support for more details regarding this information.[!NOTE] Queries should be made to the path /prediction
. Requests to a different path or incomplete requests will generate an error response. In this example, localhost
and 8088
correspond to the server's IP address and service port, respectively. Please consult your local IT support for more details regarding this information.
In this example, "text_to_be_queried"
is replaced with "something went wrong"
, and "num_predictions"
is omitted, so the number of predictions defaults to 1. This query returns a response in the following JSON format:
The response consists of the following elements:
"dvspondes"
: Contains the queried text.
"categories"
: An array that includes the predicted values of "dvcat"
, along with the corresponding "dvdecod"
and the probability or likelihood associated with the provided text.
"dvcat"
: The predicted category based on the input text.
"dvdecod"
: The predicted code corresponding to the input text and the "dvcat"
.
"probability"
: The assigned probability associated with the combination of dvcat
and dvdecod
.
"timestamp"
: The timestamp of the query request.
This response confirms the successful execution of the query. In any other case, an error message will be returned.
Based on the number of parameters, we have four possible scenarios:
i) Multiple query strings with one prediction.
ii) A single query string with multiple predictions.
iii) Multiple query strings with multiple predictions.
All of these responses share a similar structure to that described in the previous section.
Multiple query strings and number of predictions set to one. This scenario considers query of the form:
We should expect the following output:
The response includes the two query strings along with their respective predictions. Number 1 corresponds to the first query string and its predictions, while number 2 follows the same structure.
A string query with a number of predictions greater than 1. This scenario involves queries of the following form:
We should expect the following output:
The response includes the one query strings along with three predictions. Number 1 corresponds to the first query string and its predictions, while number 2 and 3 follow the same structure.
Multiple query strings with a number of predictions greater than 1. This scenario involves queries of the following form:
You should expect the following output. Note: only a partial output is displayed:
The response includes two query strings, each accompanied by two predictions. Numbers 1 and 2 correspond to the first and second predictions for the first query string, while numbers 3 and 4 correspond to the first and second predictions for the second query string.
JSON query format.
This issue might occur if the query isn’t formatted correctly, such as when a comma or quotation mark is missing. In such cases, the application will return the following response:
mark is missing. In such cases, the application will return the following response:
Number 1 identifies the type of error we’re dealing with, while Number 2 offers more detail about
the error. In this case, the message indicates that a delimiter, specifically a comma, was expected.
Invalid parameter.
This error occurs when you provide a parameter that is outside the range defined by the system.
The message might look like this:
The error message (number 1) indicates that one of the arguments is out of range. Additionally, the
system states that it could not process the request.
Server Unavailable. If the server is down, you may encounter the following error:
This indicates that the connection to the server on the specified port did not respond. In this case,
it’s recommended to check if the system is running.
Incorrect URL Path
If the URL path is incorrect, you will receive the following message because the system could not
locate the requested service.
Incorrect Event
If the request is not properly selected, you may have chosen an event other than "POST":
You will receive the following message:
This message means that the selected event is not supported.