AWS Services for Text/Shape Extraction and Evaluation

0

I have a bunch of test papers for an exam, with questions that include formulas, shapes, and text. I want to scan these papers and check the students' answers. What AWS services can I use for this?

alex
已提問 1 年前檢視次數 208 次
1 個回答
2
已接受的答案

AWS can provide you with some services but to accomplish this task you need to handle lots of things AWS services just can support you for this task.

Amazon Textract: Textract can extract printed text (in several languages) from scanned documents, forms, and tables. It uses machine learning to read and process the text from your documents, effectively turning the content into machine-readable data. However, Textract primarily focuses on textual data and has limited support for complex figures, shapes, or handwritten text.

Amazon Rekognition: This service can analyze images and videos for you. You can identify objects, people, text, scenes, activities, as well as any inappropriate content. For your use case, this can be useful to identify and interpret diagrams or shapes if any. Please note that complex recognition might require custom training of the model.

Amazon Comprehend: Once the text is extracted, you can use Comprehend to understand the sentiment or the key phrases in the text. It's an NLP (Natural Language Processing) service that uses machine learning to find insights and relationships in a text.

AWS Lambda: You can use Lambda to create a serverless application that ties together the various AWS services mentioned. AWS Lambda can be triggered when a new document is uploaded to an S3 bucket, process the document using Textract and/or Rekognition, and store the results in a database such as Amazon DynamoDB.

Amazon A2I (Augmented AI): This is useful when you need human review of the ML predictions. If Textract or Rekognition are unable to accurately extract or identify content, A2I can help bridge the gap.

Amazon SageMaker: If your problem is more complex and requires custom models for handwriting recognition or shape detection, SageMaker provides a complete set of tools to train, tune, and deploy your Machine Learning models.

profile picture
專家
已回答 1 年前
  • Let me work on these services. I am searching the correct cloud services to solve this problem.

您尚未登入。 登入 去張貼答案。

一個好的回答可以清楚地回答問題並提供建設性的意見回饋,同時有助於提問者的專業成長。

回答問題指南