일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | ||
6 | 7 | 8 | 9 | 10 | 11 | 12 |
13 | 14 | 15 | 16 | 17 | 18 | 19 |
20 | 21 | 22 | 23 | 24 | 25 | 26 |
27 | 28 | 29 | 30 | 31 |
- 대스크
- 인자 힌트
- 프롬프트 튜닝
- 도커
- GPT
- Azure
- 조건문
- Cognitive Search
- 파라미터 힌트
- 퓨샷
- 인컨텍스트 러닝
- 컨텍스트 매니져
- 검색
- 제로샷
- 아기동화
- Docker
- Redshift
- dask
- AI 동화
- 파이썬
- 동화책
- UDF
- 토끼
- 반복문
- Cognitive Service
- Compute
- Python
- 모험
- FOR
- Ai
- Today
- Total
목록Cognitive Service (2)
호랭이 분석가

Azure Cognitive Service에서 제공하는 Language 서비스를 이용하여 문서나 문장을 요약하는 방법에 대해 알아보겠습니다. azure-ai-textanalytics pip install azure-ai-textanalytics==5.3.0 azure-ai-textanalytics 라이브러리를 설치해 줍니다. Azure의 Cognitive Search와 Translator 서비스에서 사용되는 라이브러리와는 다르기 때문에 새로 설치해주어야 합니다. from azure.ai.textanalytics import TextAnalyticsClient from azure.core.credentials import AzureKeyCredential language_key = 'your-languag..

Azure Cognitive Searvice의 Translator 서비스를 Python으로 사용하기 위한 세팅을 해보도록 하겠습니다. 기본적으로 Azure의 Portal에 Translator가 생성이 되어있다고 가정하고 진행합니다. pip install azure-ai-translation-text=1.0.0b1 우선 터미널에 azure-ai-translation-text 라이브러리를 설치해 줍니다. from azure.ai.translation.text import TextTranslationClient, TranslatorCredential from azure.ai.translation.text.models import InputTextItem from azure.core.exceptions impo..