Skip to main content

MinVectorDB is a simple vector storage and query database implementation, providing clear and concise Python APIs aimed at lowering the barrier to using vector databases.

Project description

MinVectorDB

MinVectorDB is a simple vector storage and query database implementation, providing clear and concise Python APIs aimed at lowering the barrier to using vector databases. More practical features will be added in the future.

It is important to note that MinVectorDB is not designed for efficiency and thus does not include built-in algorithms like approximate nearest neighbors for efficient searching.

It originated from the author's need to demonstrate a large language model demo, designed for 100% recall.

Additionally, it has not undergone rigorous code testing, so caution is advised when using it in a production environment.
MinVectorDB 是简易实现的向量存储和查询数据库,提供简洁明了的python API,旨在降低向量数据库的使用门槛。未来将添加更多实用功能。

需要注意的是,MinVectorDB并非为追求效率而生,因此,并没有内置近似最近邻等高效查找算法。

它起源于作者需要演示大语言模型Demo的契机,为了追求100%召回率而设计,此外,也没有经过严格的代码测试,因此如果将其用于生产环境需要特别谨慎。

Install

pip install MinVectorDB

Qucik Start

Sequentially add vectors.

try:
    from IPython.display import display_markdown
except ImportError:
    def display_markdown(text, raw=True):
        print(text)

import numpy as np

from spinesUtils.utils import Timer
from min_vec import MinVectorDB

timer = Timer()



# ===================================================================
# ========================= DEMO 1 ==================================
# ===================================================================
# Demo 1 -- Sequentially add vectors.
# Create a MinVectorDB instance.
display_markdown("*Demo 1* -- **Sequentially add vectors**", raw=True)

db = MinVectorDB(dim=1024, database_path='test_min_vec.mvdb', chunk_size=10000)

np.random.seed(23)

def get_test_vectors(shape):
    for i in range(shape[0]):
        yield np.random.random(shape[1])

timer.start()
# ========== Use automatic commit statements. Recommended. =============
with db.insert_session():
    # Define the initial ID.
    id = 0
    for t in get_test_vectors((100000, 1024)):
        # Vectors need to be normalized before writing to the database.
        # t = t / np.linalg.norm(t) 
        # Here, normalization can be directly specified, achieving the same effect as the previous sentence.
        db.add_item(t, id=id, normalize=True)
        
        # ID increments by 1 with each loop iteration.
        id += 1

# You can perform this operation multiple times, and the data will be appended to the database.
# with db.insert_session():
#     # Define the initial ID.
#     for t in get_test_vectors((100000, 1024)):
#         # Vectors need to be normalized before writing to the database.
#         # t = t / np.linalg.norm(t) 
#         # Here, normalization can be directly specified, achieving the same effect as the previous sentence.
#         db.add_item(t, id=id, normalize=True)
#         
#         # ID increments by 1 with each loop iteration.
#         id += 1

# ============== Or use manual commit statements. =================
# id = 0
# for t in get_test_vectors((100000, 1024)):
#     # Vectors need to be normalized before writing to the database.
#     # t = t / np.linalg.norm(t) 
#     # Here, normalization can be directly specified, achieving the same effect as the previous sentence.
#     db.add_item(t, id=id, normalize=True)
#     
#     # ID increments by 1 with each loop iteration.
#     id += 1
# db.commit()
        
print(f"\n* [Insert data] Time cost {timer.last_timestamp_diff():>.4f} s.")

query = db.head(10)[0]

timer.middle_point()
res = db.query(query, k=10)
print("  - Database shape: ", db.shape)
print("  - Query vector: ", query)
print("  - Database index of top 10 results: ", res[0])
print("  - Cosine similarity of top 10 results: ", res[1])
print(f"\n* [Query data] Time cost {timer.last_timestamp_diff():>.4f} s.")
timer.end()


# This sentence is for demo demonstration purposes, to clear the currently created .mvdb files from the database, but this is optional in actual use.
db.delete()

Demo 1 -- Sequentially add vectors

* [Insert data] Time cost 8.3943 s.
  - Database shape:  (100000, 1024)
  - Query vector:  [0.02898663 0.05306277 0.04289231 ... 0.0143056  0.01658326 0.04808333]
  - Database index of top 10 results:  [    0 67927 53447 47665 64134 13859 41949  5788 38082 18507]
  - Cosine similarity of top 10 results:  [1.0000001  0.7810165  0.7777599  0.77717626 0.7759102  0.77581775
 0.7757873  0.77570766 0.77500904 0.774201  ]

* [Query data] Time cost 0.2876 s.

Bulk add vectors

try:
    from IPython.display import display_markdown
except ImportError:
    def display_markdown(text, raw=True):
        print(text)

import numpy as np

from spinesUtils.utils import Timer
from min_vec import MinVectorDB

timer = Timer()

# ===================================================================
# ========================= DEMO 2 ==================================
# ===================================================================
# Demo 2 -- Bulk add vectors.
display_markdown("*Demo 2* -- **Bulk add vectors**", raw=True)

db = MinVectorDB(dim=1024, database_path='test_min_vec.mvdb', chunk_size=10000, bloom_filter_size=100_000_000)

np.random.seed(23)

def get_test_vectors(shape):
    for i in range(shape[0]):
        yield np.random.random(shape[1])

timer.start()
with db.insert_session():  
    # Define the initial ID.
    id = 0
    vectors = []
    for t in get_test_vectors((100000, 1024)):
        # Vectors need to be normalized before writing to the database.
        # t = t / np.linalg.norm(t) 
        vectors.append((t, id))
        # ID increments by 1 with each loop iteration.
        id += 1
        
    # Here, normalization can be directly specified, achieving the same effect as `t = t / np.linalg.norm(t) `.
    db.bulk_add_items(vectors, normalize=True)

# You can perform this operation multiple times, and the data will be appended to the database.
# with db.insert_session():  
#     # Define the initial ID.
#     vectors = []
#     for t in get_test_vectors((100000, 1024)):
#         # Vectors need to be normalized before writing to the database.
#         # t = t / np.linalg.norm(t) 
#         vectors.append((t, id))
#         # ID increments by 1 with each loop iteration.
#         id += 1
#         
#     # Here, normalization can be directly specified, achieving the same effect as `t = t / np.linalg.norm(t) `.
#     db.bulk_add_items(vectors, normalize=True)

print(f"\n* [Insert data] Time cost {timer.last_timestamp_diff():>.4f} s.")
query = db.head(10)[0]

timer.middle_point()
res = db.query(query, k=10)
print("  - Database shape: ", db.shape)
print("  - Query vector: ", query)
print("  - Database index of top 10 results: ", res[0])
print("  - Cosine similarity of top 10 results: ", res[1])
print(f"\n* [Query data] Time cost {timer.last_timestamp_diff():>.4f} s.")


timer.end()

# This sentence is for demo demonstration purposes, to clear the currently created .mvdb files from the database, but this is optional in actual use.
db.delete()

Demo 2 -- Bulk add vectors

* [Insert data] Time cost 1.0421 s.
  - Database shape:  (100000, 1024)
  - Query vector:  [0.02898663 0.05306277 0.04289231 ... 0.0143056  0.01658326 0.04808333]
  - Database index of top 10 results:  [    0 67927 53447 47665 64134 13859 41949  5788 38082 18507]
  - Cosine similarity of top 10 results:  [1.0000001  0.7810165  0.7777599  0.7771764  0.7759102  0.77581775
 0.7757873  0.77570766 0.77500904 0.774201  ]

* [Query data] Time cost 0.1890 s.

Use field to improve Searching Recall

try:
    from IPython.display import display_markdown
except ImportError:
    def display_markdown(text, raw=True):
        print(text)

import numpy as np

from spinesUtils.utils import Timer
from min_vec import MinVectorDB

timer = Timer()

# ===================================================================
# ========================= DEMO 3 ==================================
# ===================================================================
# Demo 3 -- Use field to improve Searching Recall
display_markdown("*Demo 3* -- **Use field to improve Searching Recall**", raw=True)

db = MinVectorDB(dim=1024, database_path='test_min_vec.mvdb', chunk_size=10000)

np.random.seed(23)


def get_test_vectors(shape):
    for i in range(shape[0]):
        yield np.random.random(shape[1])

timer.start()
with db.insert_session():     
    # Define the initial ID.
    id = 0
    vectors = []
    for t in get_test_vectors((100000, 1024)):
        # Vectors need to be normalized before writing to the database.
        # t = t / np.linalg.norm(t) 
        vectors.append((t, id, 'test_'+str(id // 100)))
        # ID increments by 1 with each loop iteration.
        id += 1
        
    db.bulk_add_items(vectors, normalize=True)

print(f"\n* [Insert data] Time cost {timer.last_timestamp_diff():>.4f} s.")

query = db.head(10)[0]

timer.middle_point()

res = db.query(query, k=10, field=['test_0', 'test_3'])
print("  - Database shape: ", db.shape)
print("  - Query vector: ", query)
print("  - Database index of top 10 results: ", res[0])
print("  - Cosine similarity of top 10 results: ", res[1])
print(f"\n* [Query data] Time cost {timer.last_timestamp_diff():>.4f} s.")

timer.end()

# This sentence is for demo demonstration purposes, to clear the currently created .mvdb files from the database, but this is optional in actual use.
db.delete()

Demo 3 -- Use field to improve Searching Recall

* [Insert data] Time cost 1.0885 s.
  - Database shape:  (100000, 1024)
  - Query vector:  [0.02898663 0.05306277 0.04289231 ... 0.0143056  0.01658326 0.04808333]
  - Database index of top 10 results:  [  0 396   9 359  98 317  20  66 347 337]
  - Cosine similarity of top 10 results:  [1.0000001  0.7712989  0.7611679  0.7611464  0.7591923  0.75870526
 0.757499   0.7574572  0.75731516 0.75730586]

* [Query data] Time cost 0.1255 s.

Use subset_indices to narrow down the search range

try:
    from IPython.display import display_markdown
except ImportError:
    def display_markdown(text, raw=True):
        print(text)

import numpy as np

from spinesUtils.utils import Timer
from min_vec import MinVectorDB

timer = Timer()

# ===================================================================
# ========================= DEMO 4 ==================================
# ===================================================================
# Demo 4 -- Use subset_indices to narrow down the search range
display_markdown("*Demo 4* -- **Use subset_indices to narrow down the search range**", raw=True)

timer.start()

db = MinVectorDB(dim=1024, database_path='test_min_vec.mvdb', chunk_size=10000)

np.random.seed(23)


def get_test_vectors(shape):
    for i in range(shape[0]):
        yield np.random.random(shape[1])

with db.insert_session():     
    # Define the initial ID.
    id = 0
    vectors = []
    for t in get_test_vectors((100001, 1024)):
        # Vectors need to be normalized before writing to the database.
        # t = t / np.linalg.norm(t) 
        vectors.append((t, id, 'test_'+str(id // 100)))
        # ID increments by 1 with each loop iteration.
        id += 1
        
    db.bulk_add_items(vectors, normalize=True)

print(f"\n* [Insert data] Time cost {timer.last_timestamp_diff():>.4f} s.")

query = db.head(10)[0]

timer.middle_point()

res = db.query(query, k=10, field=['test_0', 'test_3'], subset_indices=list(range(1000)))
print("  - Database shape: ", db.shape)
print("  - Query vector: ", query)
print("  - Database index of top 10 results: ", res[0])
print("  - Cosine similarity of top 10 results: ", res[1])
print(f"\n* [Query data] Time cost {timer.last_timestamp_diff():>.4f} s.")

timer.end()

# This sentence is for demo demonstration purposes, to clear the currently created .mvdb files from the database, but this is optional in actual use.
db.delete()

Demo 4 -- Use subset_indices to narrow down the search range

* [Insert data] Time cost 1.1307 s.
  - Database shape:  (100001, 1024)
  - Query vector:  [0.02898663 0.05306277 0.04289231 ... 0.0143056  0.01658326 0.04808333]
  - Database index of top 10 results:  [  0 396   9 359  98 317  20  66 347 337]
  - Cosine similarity of top 10 results:  [1.0000001  0.7712989  0.7611679  0.7611464  0.7591923  0.75870526
 0.757499   0.7574572  0.75731516 0.75730586]

* [Query data] Time cost 0.1223 s.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

MinVectorDB-0.0.12.tar.gz (16.1 kB view hashes)

Uploaded Source

Built Distribution

MinVectorDB-0.0.12-py3-none-any.whl (16.9 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page