Skip to content

Commit

Permalink
Update deeplake/core/vectorstore/vector_search/dataset/dataset.py
Browse files Browse the repository at this point in the history
Co-authored-by: Fayaz Rahman <fayazrahman4u@gmail.com>
  • Loading branch information
adolkhan and FayazRahman authored May 11, 2023
1 parent 178b11c commit 24a0f61
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion deeplake/core/vectorstore/vector_search/dataset/dataset.py
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ def fetch_embeddings(exec_option, view, logger):
logger.warning(
"Python implementation fetches all of the dataset's embedding into memory. "
"With big datasets this could be quite slow and potentially result in performance issues. "
"Better to use `exec_option = db_engine`."
"Use `exec_option = db_engine` for better performance."
)
embeddings = view.embedding.numpy()
elif exec_option in ("indra", "db_engine"):
Expand Down

0 comments on commit 24a0f61

Please sign in to comment.