Which Amazon Textract API action can the law firm use to generate a confidence score for each page of each contract?
Use the AnalyzeDocument API action. Set the FeatureTypes parameter to SIGNATURES. Return the confidence scores for each page.
Use the Prediction API call on the documents. Return the signatures and confidence scores for each page.
Use the StartDocumentAnalysis API action to detect the signatures. Return the confidence scores for each page.
Use the GetDocumentAnalysis API action to detect the signatures. Return the confidence scores for each page.
Explanations:
TheAnalyzeDocumentAPI withFeatureTypesset toSIGNATUREScan detect signatures and provide confidence scores.
There is noPredictionAPI in Amazon Textract; thus, this option does not apply to signature detection tasks.
StartDocumentAnalysisis used for asynchronous processing but does not directly return confidence scores for each page.
GetDocumentAnalysisretrieves results from an asynchronous job but does not perform analysis directly for confidence scoring.