Replies: 1 comment
-
Hey @Raul220 👋🏼 , everything runs on your machine. No files are uploaded anywhere. :) All downoaded files (models & datasets) can be found in ref.: |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hello!
I want to know if when I use the doctr models on a document, as the following example:
model = ocr_predictor(det_arch='db_resnet50', reco_arch='crnn_vgg16_bn', pretrained=True)
pdf_doc = DocumentFile.from_pdf("path/to/your/doc.pdf")
result = predictor(doc)
and the models db_resnet50 and crnn_vgg16_bn are already in cache, does the predictor or from_pdf functions performs the processing locally?
Is the pdf document uploaded to the internet?
Thanks
Beta Was this translation helpful? Give feedback.
All reactions