scikit-learnk nearest neighbors의 일부 구현을 포함한 오픈 소스 머신 러닝 알고리즘 모음입니다. SKLearnVectorStore는 이 구현을 래핑하고 vector store를 json, bson (binary json) 또는 Apache Parquet 형식으로 저장할 수 있는 기능을 추가합니다.

Installation and Setup

  • pip install scikit-learn 명령어로 Python 패키지를 설치하세요

Vector Store

SKLearnVectorStore는 scikit-learn 패키지의 nearest neighbor 구현에 대한 간단한 wrapper를 제공하여 vectorstore로 사용할 수 있게 합니다. 이 vectorstore를 import하려면:
from langchain_community.vectorstores import SKLearnVectorStore
SKLearnVectorStore wrapper에 대한 더 자세한 안내는 이 노트북을 참조하세요.

Retriever

Support vector machines (SVMs)는 분류, 회귀 및 이상치 탐지에 사용되는 지도 학습 방법입니다. 사용 예제를 참조하세요.
from langchain_community.retrievers import SVMRetriever

Connect these docs programmatically to Claude, VSCode, and more via MCP for real-time answers.
I