Skip to main content

Voiceprint Comparison: get task

GET 

/api/technology/speaker-identification-voiceprint-comparison/:task_id

Retrieve task for comparison of voiceprints.

How a Voiceprint Comparison result is arranged

See Voiceprint Comparison task request documentation for details on how the request is arranged.

The result of a Voiceprint Comparison task is a matrix of scores represented as a single vector in row-major order, expressed as follows:

[
vp_a_1 x vp_b_1, vp_a_2 x vp_b_1, ..., vp_a_M x vp_b_1,
vp_a_1 x vp_b_2, vp_a_2 x vp_b_2, ..., vp_a_M x vp_b_2,
...,
vp_a_1 x vp_b_N, vp_a_2 x vp_b_N, ..., vp_a_M x vp_b_N
]

where M = size of voiceprints_a list (columns_count) and N = size of voiceprints_b list (rows_count). In other words, going through the list of scores is the equivalent of traversing the matrix row by row.

The result also contains the number of matrix rows and columns. The columns_count and rows_count correspond to the comparison's input request parameters voiceprints_a and voiceprints_b respectively.

For example, the following result data in the response:

{
"scores": {
"columns_count": 3,
"rows_count": 3,
"values": [
3, 1, 2,
8, 2, -6,
11, 2, 7
]
}
}

represent the following result matrix:

voiceprints_a list
vp_a_1vp_a_2vp_a_3
voiceprints_b listvp_b_1312
vp_b_282-6
vp_b_31127

Request

Responses

Voiceprint Comparison task.

The response body contains task info in the task field. Depending on the task processing outcome, either result or error field is populated.