Harrison/tf embeddings (#817)

Co-authored-by: Ryohei Kuroki <10434946+yakigac@users.noreply.github.com>
This commit is contained in:
Harrison Chase
2023-01-31 00:00:08 -08:00
committed by GitHub
parent 5d4b6e4d4e
commit 7b4882a2f4
6 changed files with 1017 additions and 298 deletions

View File

@@ -0,0 +1,19 @@
"""Test TensorflowHub embeddings."""
from langchain.embeddings import TensorflowHubEmbeddings
def test_tensorflowhub_embedding_documents() -> None:
"""Test tensorflowhub embeddings."""
documents = ["foo bar"]
embedding = TensorflowHubEmbeddings()
output = embedding.embed_documents(documents)
assert len(output) == 1
assert len(output[0]) == 512
def test_tensorflowhub_embedding_query() -> None:
"""Test tensorflowhub embeddings."""
document = "foo bar"
embedding = TensorflowHubEmbeddings()
output = embedding.embed_query(document)
assert len(output) == 512