- Newest
- Most votes
- Most comments
Yes, you can use AWS Lambda with Amazon Translate to build a serverless translation service. This combination allows you to create an on-demand solution where you only pay for what you use, without managing infrastructure.
Amazon Translate supports 75 languages, but the provided sources don't specifically mention Gujarati or list all the supported Indian languages. To determine if Gujarati is supported, you would need to check the Amazon Translate documentation for the complete list of supported languages.
For your OCR project, you could create a serverless workflow where:
- AWS Lambda functions call Amazon Translate's TranslateText API to perform the translation
- You can orchestrate the workflow using AWS Step Functions
- Store your source and translated documents in Amazon S3
The code examples show that you can use the TranslateText operation by providing the source language code, target language code, and the text to be translated. You can either specify the source language explicitly or use Amazon Translate's auto-detection feature (though this may incur additional charges).
If you're working with documents rather than plain text, you can use the TranslateDocument operation, which supports translations from English to supported languages and vice versa for text, HTML, or Word (.docx) documents.
For a more sophisticated solution, you might consider combining Amazon Translate with Amazon Bedrock to refine translations and create more natural, flowing content in your target language.
Sources
Real-time translation using the API - Amazon Translate
Use TranslateText with an AWS SDK or CLI - AWS SDK Code Examples
Automate document translation and standardization with Amazon Bedrock and Amazon Translate | AWS Machine Learning Blog
answered a year ago
Refer to this document - https://docs.aws.amazon.com/translate/latest/dg/what-is-languages.html - for a list of languages supported by Amazon Translate. According to this, Gujarati is supported. Other Indian languages including Bengali, Hindi, Malayalam, Punjabi, Tamil and Telugu are also supported.
Relevant content
asked 4 years ago
asked 2 years ago
- AWS OFFICIALUpdated 3 years ago
