How to get confidence score for a table using Modern Document Understanding (Extract Document Data)

I’m working with Modern Document Understanding in UiPath and using the Extract Document Data activity. The output variable type is:
UiPath.IntelligentOCR.StudioWeb.Activities.DataExtraction.IDocumentData<UiPath.IntelligentOCR.StudioWeb.Activities.DataExtraction.DictionaryData>

My goal is to retrieve the confidence score for a table extracted from the document. I can access the table data, but I’m unable to find the correct way to get the confidence score for the table or its cells.

@s.dineshbabu

you can get individual confidence scores

documentData.Data.Items.Select(function(x) x.UnitPrice.Confidence)

the above is example for unit price field in invoice model

cheers

1 Like

Its not showing Ite, property.

@s.dineshbabu

just type items…or give only dot

if the fields are not configured it might not..please check model

not sure about which model you are using

cheers

1 Like

Here is the screenshot for configured table and activity properties.

I am trying this in studio (not the web studio).

@s.dineshbabu

keep generate datatype on

cheers

This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.