Deeplavov Question Answering Model

Regards, I have a question about the module for Question Answering Model:
When I used on Python, the output from the model is :
[[‘un sistema de pago de servicios’], [14], [2854.8818359375]]

I have understood the first list is the answer, the second list answer is present at 14th character
what is the final list? what means that number? is there any way to get the probability that it is correct? using something like softmax?

Thanks btw your work is Amazing !! :grinning:

The last number is the logit value. Which gives a notion of the confidence that the model has on this answer.

1 Like