Skip to content

Commit

Permalink
Merge pull request #2857 from activeloopai/ld_129
Browse files Browse the repository at this point in the history
update libdeeplake
  • Loading branch information
activesoull authored May 15, 2024
2 parents 7dfddf9 + f90273b commit 2699925
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
18 changes: 9 additions & 9 deletions deeplake/core/vectorstore/deep_memory/test_deepmemory.py
Original file line number Diff line number Diff line change
Expand Up @@ -195,15 +195,15 @@ def test_deepmemory_evaluate(
"recall@100": 0.9,
}

# TODO: add this back when the issue with the backend is resolved
# assert recall["with model"] == {
# "recall@1": 0.8,
# "recall@3": 0.8,
# "recall@5": 0.9,
# "recall@10": 0.9,
# "recall@50": 0.9,
# "recall@100": 0.9,
# }
assert recall["with model"] == {
"recall@1": 0.9,
"recall@3": 0.9,
"recall@5": 0.9,
"recall@10": 0.9,
"recall@50": 0.9,
"recall@100": 0.9,
}

sleep(15)
queries_dataset = VectorStore(
path=query_path,
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ def libdeeplake_available():
extras_require["all"] = [req_map[r] for r in all_extras]

if libdeeplake_available():
libdeeplake = "libdeeplake==0.0.128"
libdeeplake = "libdeeplake==0.0.129"
extras_require["enterprise"] = [libdeeplake, "pyjwt"]
extras_require["all"].append(libdeeplake)
install_requires.append(libdeeplake)
Expand Down

0 comments on commit 2699925

Please sign in to comment.