Conversation
Signed-off-by: jupyterjazz <[email protected]>
Codecov ReportPatch coverage:
Additional details and impacted files@@ Coverage Diff @@
## main #1724 +/- ##
==========================================
- Coverage 85.57% 85.54% -0.04%
==========================================
Files 133 133
Lines 8592 8608 +16
==========================================
+ Hits 7353 7364 +11
- Misses 1239 1244 +5
Flags with carried forward coverage won't be shown. Click here to find out more.
☔ View full report in Codecov by Sentry. |
Member
|
Can you also add how much more memory is used? I am not sure this is desired. |
Contributor
Author
|
Not much change in terms of memory too. Here's the experiment code from docarray.index import InMemoryExactNNIndex
from docarray import BaseDoc
from docarray.typing import NdArray
import numpy as np
import tracemalloc
tracemalloc.start()
class MyDoc(BaseDoc):
text: str
embedding: NdArray[128]
data = [MyDoc(text=f'text {i}', embedding=np.random.rand(128)) for i in range(200000)]
doc_index = InMemoryExactNNIndex[MyDoc]()
doc_index.index(data)
docs, scores = doc_index.find(data[0], search_field='embedding')
if data[10] in doc_index:
print('wohoo')
ids_to_get = [data[200].id, data[250].id, data[350].id]
docs = doc_index[ids_to_get]
ids_to_del = [data[200].id, data[250].id, data[350].id]
del doc_index[ids_to_del]
print(tracemalloc.get_traced_memory())
tracemalloc.stop()Before change prints (768773718, 1032141402) showing current memory usage and max memory usage |
|
📝 Docs are deployed on https://ft-feat-inmemory-update--jina-docs.netlify.app 🎉 |
JoanFM
approved these changes
Jul 24, 2023
Closed
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Implements Update for
InMemoryExactNNIndexby creating a mapping between document IDs and their corresponding positions in the DocList.In terms of performance, we see significant ~130x (from 0.0266s to 0.0002s) improvement in get, and a slight increase in the index time - approx. from 3.50s to 3.57s; Other operation times stayed very similar. Experiment was made on 200 000 docs, vector dim 128.