일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 조건문
- Cognitive Service
- 프롬프트 튜닝
- 아기동화
- dask
- Docker
- UDF
- 퓨샷
- 검색
- 토끼
- 제로샷
- 인자 힌트
- 인컨텍스트 러닝
- Python
- AI 동화
- 파라미터 힌트
- GPT
- 반복문
- Azure
- Cognitive Search
- 컨텍스트 매니져
- Redshift
- 파이썬
- 동화책
- Compute
- Ai
- FOR
- 모험
- 도커
- 대스크
- Today
- Total
목록Cognitive Search (6)
호랭이 분석가
2023. 07. 11. Azure에서 Cognitive Search에 Vector Search(벡터 검색) 기능을 추가하여 공개하였습니다. Vector search - Azure Cognitive Search Describes concepts, scenarios, and availability of the vector search feature in Cognitive Search. learn.microsoft.com 벡터 검색은 문장을 벡터로 임베딩하여 Cognitive Search의 인덱싱으로 활용하는 기능인데 이를 통해 유사성 검색, 다중 모달 검색, 추천 엔진 또는 RAG(검색 증강 기능)을 구현할 수 있다고 합니다. 자세한 내용은 링크를 통해 확인하시면 됩니다. 일단 이번 글에서는 Python으..
[Azure] Cognitive Search로 검색 및 필터 설정 (Python) [Azure] Cognitive Search Index 생성, 삭제, 업로드 Python을 이용하여 Azure Cognitive Search의 Indexes를 생성할 때, 사용할 수 있는 Class는 무엇이 있는지 알아보겠습니다. Azure Cognitive Search client library for Python Ta dataiger.tistory.com Azure Cognitive Search로 인덱스를 생성할 때 ScoringProfile을 통해 각 필드별로 가중치를 준다면 검색의 순서를 조절할 수 있습니다. 그럼 인덱스를 생성할 때, ScoringProfile과 String Type 필드에 사용할 수 있는 Text..
[Azure] Cognitive Search로 검색 및 필터 설정 (Python) [Azure] Cognitive Search Index 생성, 삭제, 업로드 Python을 이용하여 Azure Cognitive Search의 Indexes를 생성할 때, 사용할 수 있는 Class는 무엇이 있는지 알아보겠습니다. Azure Cognitive Search client library for Python Ta dataiger.tistory.com 기본적인 검색과 필터링을 하였으니 검색 클라이언트 중 Suggest API를 이용한 자동 완성 기능을 구현해 보겠습니다. 기본적인 검색을 구현하기 위해서 인덱스를 생성하였는데 자동 완성 검색을 구현하려면 추가적으로 suggesters를 설정해주셔야 합니다. # 인덱스 ..
[Azure] Cognitive Search Index 생성, 삭제, 업로드 Python을 이용하여 Azure Cognitive Search의 Indexes를 생성할 때, 사용할 수 있는 Class는 무엇이 있는지 알아보겠습니다. Azure Cognitive Search client library for Python Table of contents Azure Cognitive Search client library for dataiger.tistory.com Azure Cognitive Search로 Index를 생성하고 데이터를 준비하였다면 검색을 위한 기본 준비는 끝났습니다. # 샘플 인덱스명 / 필드 상세 index_name = 'test' fields = [ SimpleField(name="tes..
Python을 이용하여 Azure Cognitive Search의 Indexes를 생성할 때, 사용할 수 있는 Class는 무엇이 있는지 알아보겠습니다. Azure Cognitive Search client library for Python Table of contents Azure Cognitive Search client library for Python - version 11.3.0 Article 09/06/2022 6 contributors Feedback In this article --> Azure Cognitive Search is a search-as-a-service cloud solution that gives developers APIs and tools for addin learn...
Python을 이용하여 Azure Cognitive Search의 Indexes를 생성할 때, 사용할 수 있는 Field Class는 무엇이 있는지 알아보겠습니다. azure.search.documents.indexes.SearchIndexClient class A client to interact with Azure search service index. learn.microsoft.com Azure Documents에서 제공하는 "hotels"란 이름의 index를 지정된 fields의 값으로 생성하는 예제입니다. name = "hotels" fields = [ SimpleField(name="hotelId", type=SearchFieldDataType.String, key=True), Simple..