Movatterモバイル変換


[0]ホーム

URL:


Skip to main content
OurBuilding Ambient Agents with LangGraph course is now available on LangChain Academy!
Open In ColabOpen on GitHub

Aleph Alpha

There are two possible ways to use Aleph Alpha's semantic embeddings. If you have texts with a dissimilar structure (e.g. a Document and a Query) you would want to use asymmetric embeddings. Conversely, for texts with comparable structures, symmetric embeddings are the suggested approach.

Asymmetric

from langchain_community.embeddingsimport AlephAlphaAsymmetricSemanticEmbedding
document="This is a content of the document"
query="What is the content of the document?"
embeddings= AlephAlphaAsymmetricSemanticEmbedding(normalize=True, compress_to_size=128)
doc_result= embeddings.embed_documents([document])
query_result= embeddings.embed_query(query)

Symmetric

from langchain_community.embeddingsimport AlephAlphaSymmetricSemanticEmbedding
text="This is a test text"
embeddings= AlephAlphaSymmetricSemanticEmbedding(normalize=True, compress_to_size=128)
doc_result= embeddings.embed_documents([text])
query_result= embeddings.embed_query(text)

Related


[8]ページ先頭

©2009-2025 Movatter.jp