mirror of
https://github.com/hwchase17/langchain.git
synced 2025-08-29 06:23:20 +00:00
chroma: remove relevance score int test (#20346)
deprecating feature in #20302
This commit is contained in:
parent
de938a4451
commit
da707d0755
@ -249,27 +249,6 @@ def test_chroma_update_document() -> None:
|
||||
assert new_embedding != old_embedding
|
||||
|
||||
|
||||
# TODO: RELEVANCE SCORE IS BROKEN. FIX TEST
|
||||
def test_chroma_with_relevance_score() -> None:
|
||||
"""Test to make sure the relevance score is scaled to 0-1."""
|
||||
texts = ["foo", "bar", "baz"]
|
||||
metadatas = [{"page": str(i)} for i in range(len(texts))]
|
||||
docsearch = Chroma.from_texts(
|
||||
collection_name="test_collection",
|
||||
texts=texts,
|
||||
embedding=FakeEmbeddings(),
|
||||
metadatas=metadatas,
|
||||
collection_metadata={"hnsw:space": "l2"},
|
||||
)
|
||||
output = docsearch.similarity_search_with_relevance_scores("foo", k=3)
|
||||
docsearch.delete_collection()
|
||||
assert output == [
|
||||
(Document(page_content="foo", metadata={"page": "0"}), 1.0),
|
||||
(Document(page_content="bar", metadata={"page": "1"}), 0.8),
|
||||
(Document(page_content="baz", metadata={"page": "2"}), 0.5),
|
||||
]
|
||||
|
||||
|
||||
# TODO: RELEVANCE SCORE IS BROKEN. FIX TEST
|
||||
def test_chroma_with_relevance_score_custom_normalization_fn() -> None:
|
||||
"""Test searching with relevance score and custom normalization function."""
|
||||
|
Loading…
Reference in New Issue
Block a user