Questions tagged [cloud-document-ai]

This tag is for the Document AI product within Google Cloud Platform.

200 questions
0
votes
1 answer

How to train Document AI to get specific fields?

I have approximately 6000 documents in pdf format, they have a different structure but inside they all contain the same date and code (With different structure I mean that the location of these values ​​changes in each document) I am working with…
0
votes
1 answer

Is Contract Processor Module available for free trial in google document AI

I am already free trialling the google invoice processor of the document AI. But now I have another use case to process contracts. Is Google Document AI for contracts available for free trial. Please clarify.
Mahesh
  • 7
  • 5
0
votes
2 answers

Google Document AI(invoice OCR) with Salesforce

I want to implement Google Document AI to read invoice details in salesforce using Rest API. I found below Api detail which is working well. Now to call this api I need Oauth token. I have tired to setup Named Credentials but getting error…
0
votes
1 answer

Google Document AI with gs:// URI results in 3 INVALID_ARGUMENT: Document bytes or path is required

I am facing 3 INVALID_ARGUMENT: Document bytes or path is required error while using Google Cloud Document AI with gs://file URI. Minimal implementation on node.js 12 const documentai = require('@google-cloud/documentai').v1; function…
redvivi
  • 83
  • 8
0
votes
0 answers

document ai Invalid dataset. See operation metadata for specific errors

I'm training for the Document there to do an OCR of a form we have, I uploaded 20 documents and divided into 10 for training and 10 for training, but when I try to run for training, the error below is displayed, I could not identify what the error…
0
votes
1 answer

Can Document AI OCR Processor extract tables?

I swear I read somewhere that v1beta3 of the OCR Processor could do table extraction. I tested using the 2020 and 2022 version and have had no table data being returned. Did I just imagine what I read or am I doing something wrong?
Adam B
  • 95
  • 11
0
votes
0 answers

How to make Google's Custom Document Extractor OCR parse text in the right order when the text isn't perfectly straight?

I am working on a project where I need to parse information from a reference book. To do this, I am using Google's Custom Document Extractor. I have been annotating my first few scanned documents, but I have noticed a problem. The problem is that…
Justin Renaud
  • 11
  • 1
  • 2
0
votes
1 answer

Google Document AI C# Integration Sample Code

I am new to Google Document AI, Need Integration code in Dot Net(C#) . Need Sample code of document ai in dot net(c#)
0
votes
2 answers

Problem importing documentai module from Google Cloud

I am trying to run the quickstart code snippet from Google Cloud tutorials and somehow the line from google.cloud import documentai_v1 as documentai I get this error: Cannot find reference 'documentai_v1' in 'imported module google.cloud' The…
0
votes
1 answer

Can I use Google detection API to detect QR code in an image?

Is it possible to detect a QR code in an image that is in a PDF document with Google API? I just see this page: Google Objects Detection
0
votes
1 answer

How can I store the data of "KEY" & "textValue" as JSON and send it as response for app.get("/api", (req, res)?

I'm working on GCP Document AI using Node.js and react.js, In the given code I have created JSON structure (var jsonResult) then in for loop I get all the different key and text value data only if I do console.log(key); and console.log(textValue);…
rakshixh
  • 11
  • 1
0
votes
0 answers

Google Cloud DocumentAI duplicating tables when page is rotated by 90 degrees

Using a Form Parser processor, extracting tables from a pdf page which is rotated by 90 causes the output of duplicated tables. Printing the bounding boxes shows that the tables are correctly detected and separated, but printing the text content…
0
votes
1 answer

Google's DocumentAi feature "human in the loop" don't work anymore

from one day to another the "human in the loop" feature didn't work anymore. I did the following things: I created a new processor (form parser) on the Google cloud console. I enabled the "human in the loop" feature for the processor on the…
0
votes
1 answer

Document.AI python client does not return tables

I want to use Document.ai to extract data from tables in my pdf. I was following this code snippet https://cloud.google.com/document-ai/docs/handle-response#code_samples_2 But my table array is always empty. I tried to do it with pdf provided by…
0
votes
1 answer

What is the way to extract check box values from a document using python in Google DocumentAI?

enter image description here I want to extract the value of this checkbox (document) by getting response from Google DocumentAI using python code. import pandas as pd from google.cloud import documentai_v1 as documentai import re def…