AWS Translate 사용법

IT 2021. 12. 9. 23:12

amazon web service 아마존 번역 서비스 사용 방법

https://aws.amazon.com/translate

    - 가격
200만 자/월 - 무료(첫 1년간만??)
100만 자 - 15 USD

    - 네이버 : 100만 자 - 2만원
        - 무료 없음
https://www.ncloud.com/product/aiService/papagoTranslation


    - 구글 :  100만 자 - $20, 월 50만자 무료
https://cloud.google.com/translate/pricing
월 첫 500,000자*  - 무료 (매월 $10 크레딧 적용)†
월 500,000~10억 자*   - 백만 자당 $20#


//-------------------------------------
* IAM에서 사용자 추가
    AWS 자격 증명 유형 - 액세스 키 
    권한 - TranslateReadOnly 


//-------------------------------------
* AWS CLI 설치
https://docs.aws.amazon.com/cli/latest/userguide/cli-chap-getting-started.html

    - 프로그램 설치
> msiexec.exe /i https://awscli.amazonaws.com/AWSCLIV2.msi

    - 버전 확인
> aws --version

    - 최초 설정 (파일 생성)
> aws configure
        - %UserProfile%\.aws 폴더가 생성됨
        - 각종 설정값 인자 설명
https://docs.aws.amazon.com/cli/latest/userguide/cli-configure-files.html


//-------------------------------------
* 설정
    - %UserProfile%\.aws\config  파일 수정
[profile1]
region = ap-northeast-2
output = json

    - %UserProfile%\.aws\credentials  파일 수정
[profile1]
aws_access_key_id = adminuser access key ID
aws_secret_access_key = adminuser secret access key


//-------------------------------------
* CLI로 번역 명령 보내기
> aws translate translate-text  --profile "profile1" --source-language-code "en"   --target-language-code "ko"  --text "hello, world"
    - --profile 옵션 안쓰면 default 프로파일 사용

    - 결과
{
    "TranslatedText": "안녕하세요, 월드",
    "SourceLanguageCode": "en",
    "TargetLanguageCode": "ko"
}

//-------------------------------------

번역 서비스 회사별 품질 비교

https://codens.info/2017

 

//-------------------------------------
* SDK 사용
    - Java , Python, Android, iOS  용 사용가능
https://docs.aws.amazon.com/translate/latest/dg/get-started-sdk.html

 

반응형
Posted by codens