BinaryVectorDB


NameBinaryVectorDB JSON
Version 0.0.2 PyPI version JSON
download
home_pagehttps://github.com/cohere-ai/BinaryVectorDB
SummaryEfficient vector DB using binary & int8 embeddings
upload_time2024-03-26 09:06:04
maintainerNone
docs_urlNone
authorNils Reimers
requires_pythonNone
licenseApache License 2.0
keywords vector database
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # BinaryVectorDB - Efficient Search on Large Datasets

This repository contains a Binary Vector Database for efficient search on large datasets, aimed for educational purposes.

Most embedding models represent their vectors as float32: These consume a lot of memory and search on these is very slow. At Cohere, we introduced the first embedding model with native [int8 and binary support](https://txt.cohere.com/int8-binary-embeddings/), which give you excellent search quality for a fraction of the cost:


| Model | Search Quality MIRACL | Time to Search 1M docs | Memory Needed 250M Wikipedia Embeddings | Price on AWS (x2gb instance) |
| ----- |:---------------------:|:----------------------:|:---------------------------------------:|:------------:|
| OpenAI text-embedding-3-small | 44.9 | 680 ms | 1431 GB | $65,231 / yr |
| OpenAI text-embedding-3-large | 54.9 | 1240 ms | 2861 GB | $130,463 / yr |
| **Cohere Embed v3 (Multilingual)** | | | | |
| Embed v3 - float32 | 66.3 | 460 ms | 954 GB | $43,488 / yr |
| Embed v3 - binary | 62.8 | 24 ms | 30 GB | $1,359 / yr |
| Embed v3 - binary + int8 rescore | 66.3 | 28 ms | 30 GB memory + 240 GB disk | $1,589 / yr |


# Setup

The setup is easy:
```
pip install BinaryVectorDB
```

To use some of the below examples you need a **Cohere API key** (free or paid) from [https://cohere.com/](Cohere.com). You must set this API key as an environment variable: `export COHERE_API_KEY=your_api_key`  


# Usage - Load an Existing Binary Vector Database

We will talk later how to build your own vector database. For the start, let us use a pre-build binary vector database. We host various pre-build databases on [https://huggingface.co/Cohere/BinaryVectorDB](https://huggingface.co/Cohere/BinaryVectorDB). You can download these and use them localy.

Let us the simple English version from Wikipedia to get started:
```
wget https://huggingface.co/datasets/Cohere/BinaryVectorDB/resolve/main/wikipedia-2023-11-simple.zip
```

And then unzip this file:
```
unzip wikipedia-2023-11-simple.zip
```


## Load the Vector Database

You can load the database easily by pointing it to the unzipped folder from the previous step:

```python
from BinaryVectorDB import BinaryVectorDB

# Point it to the unzipped folder from the previous step
# Ensure that you have set your Cohere API key via: export COHERE_API_KEY=<<YOUR_KEY>>
db = BinaryVectorDB("wikipedia-2023-11-simple/")

query = "Who is the founder of Facebook"
print("Query:", query)
hits = db.search(query)
for hit in hits[0:3]:
    print(hit)
```

The database has 646,424 embeddings and a total size of 962 MB. However, just 80 MB for the binary embeddings are loaded in memory. The documents and their int8 embeddings are kept on disk and are just loaded when needed.

This split of binary embeddings in memory and int8 embeddings & documents on disk allows us to scale to very large datasets without need tons of memory.

# Build your own Binary Vector Database

It is quite easy to build your own Binary Vector Database.

```python
from BinaryVectorDB import BinaryVectorDB
import os
import gzip
import json

simplewiki_file = "simple-wikipedia-example.jsonl.gz"

#If file not exist, download
if not os.path.exists(simplewiki_file):
    cmd = f"wget https://huggingface.co/datasets/Cohere/BinaryVectorDB/resolve/main/simple-wikipedia-example.jsonl.gz"
    os.system(cmd)

# Create the vector DB with an empty folder
# Ensure that you have set your Cohere API key via: export COHERE_API_KEY=<<YOUR_KEY>>
db_folder = "path_to_an_empty_folder/"
db = BinaryVectorDB(db_folder)

if len(db) > 0:
    exit(f"The database {db_folder} is not empty. Please provide an empty folder to create a new database.")

# Read all docs from the jsonl.gz file
docs = []
with gzip.open(simplewiki_file) as fIn:
    for line in fIn:
        docs.append(json.loads(line))

#Limit it to 10k docs to make the next step a bit faster
docs = docs[0:10_000]

# Add all documents to the DB
# docs2text defines a function that maps our documents to a string
# This string is then embedded with the state-of-the-art Cohere embedding model
db.add_documents(doc_ids=list(range(len(docs))), docs=docs, docs2text=lambda doc: doc['title']+" "+doc['text'])
```

The document can be any Python serializable object. You need to provide a function for `docs2text` that map your document to a string. In the above example, we concatenate the title and text field. This string is send to the embedding model to produce the needed text embeddings.



## Updating & Deleting Documents

See [examples/add_update_delete.py](examples/add_update_delete.py) for an example script how to add/update/delete documents in the database.

# Is this a real Vector Database?

Not really. The repository is meant mostly for educational purposes to show techniques how to scale to large datasets. The focus was more on ease of use and some critical aspects are missing in the implementation, like multi-process safety, rollbacks etc. 

If you actually wants to go into production, use a proper vector database like [Vespa.ai](https://blog.vespa.ai/scaling-large-vector-datasets-with-cohere-binary-embeddings-and-vespa/), that allows you to achieve similar results.


            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/cohere-ai/BinaryVectorDB",
    "name": "BinaryVectorDB",
    "maintainer": null,
    "docs_url": null,
    "requires_python": null,
    "maintainer_email": null,
    "keywords": "Vector Database",
    "author": "Nils Reimers",
    "author_email": "nils@cohere.com",
    "download_url": "https://files.pythonhosted.org/packages/46/07/235898cf94ddb4f0c00a33f49f7dd1b4ff2d23768f960f573ca82ac87d8c/BinaryVectorDB-0.0.2.tar.gz",
    "platform": null,
    "description": "# BinaryVectorDB - Efficient Search on Large Datasets\n\nThis repository contains a Binary Vector Database for efficient search on large datasets, aimed for educational purposes.\n\nMost embedding models represent their vectors as float32: These consume a lot of memory and search on these is very slow. At Cohere, we introduced the first embedding model with native [int8 and binary support](https://txt.cohere.com/int8-binary-embeddings/), which give you excellent search quality for a fraction of the cost:\n\n\n| Model | Search Quality MIRACL | Time to Search 1M docs | Memory Needed 250M Wikipedia Embeddings | Price on AWS (x2gb instance) |\n| ----- |:---------------------:|:----------------------:|:---------------------------------------:|:------------:|\n| OpenAI text-embedding-3-small | 44.9 | 680 ms | 1431 GB | $65,231 / yr |\n| OpenAI text-embedding-3-large | 54.9 | 1240 ms | 2861 GB | $130,463 / yr |\n| **Cohere Embed v3 (Multilingual)** | | | | |\n| Embed v3 - float32 | 66.3 | 460 ms | 954 GB | $43,488 / yr |\n| Embed v3 - binary | 62.8 | 24 ms | 30 GB | $1,359 / yr |\n| Embed v3 - binary + int8 rescore | 66.3 | 28 ms | 30 GB memory + 240 GB disk | $1,589 / yr |\n\n\n# Setup\n\nThe setup is easy:\n```\npip install BinaryVectorDB\n```\n\nTo use some of the below examples you need a **Cohere API key** (free or paid) from [https://cohere.com/](Cohere.com). You must set this API key as an environment variable: `export COHERE_API_KEY=your_api_key`  \n\n\n# Usage - Load an Existing Binary Vector Database\n\nWe will talk later how to build your own vector database. For the start, let us use a pre-build binary vector database. We host various pre-build databases on [https://huggingface.co/Cohere/BinaryVectorDB](https://huggingface.co/Cohere/BinaryVectorDB). You can download these and use them localy.\n\nLet us the simple English version from Wikipedia to get started:\n```\nwget https://huggingface.co/datasets/Cohere/BinaryVectorDB/resolve/main/wikipedia-2023-11-simple.zip\n```\n\nAnd then unzip this file:\n```\nunzip wikipedia-2023-11-simple.zip\n```\n\n\n## Load the Vector Database\n\nYou can load the database easily by pointing it to the unzipped folder from the previous step:\n\n```python\nfrom BinaryVectorDB import BinaryVectorDB\n\n# Point it to the unzipped folder from the previous step\n# Ensure that you have set your Cohere API key via: export COHERE_API_KEY=<<YOUR_KEY>>\ndb = BinaryVectorDB(\"wikipedia-2023-11-simple/\")\n\nquery = \"Who is the founder of Facebook\"\nprint(\"Query:\", query)\nhits = db.search(query)\nfor hit in hits[0:3]:\n    print(hit)\n```\n\nThe database has 646,424 embeddings and a total size of 962 MB. However, just 80 MB for the binary embeddings are loaded in memory. The documents and their int8 embeddings are kept on disk and are just loaded when needed.\n\nThis split of binary embeddings in memory and int8 embeddings & documents on disk allows us to scale to very large datasets without need tons of memory.\n\n# Build your own Binary Vector Database\n\nIt is quite easy to build your own Binary Vector Database.\n\n```python\nfrom BinaryVectorDB import BinaryVectorDB\nimport os\nimport gzip\nimport json\n\nsimplewiki_file = \"simple-wikipedia-example.jsonl.gz\"\n\n#If file not exist, download\nif not os.path.exists(simplewiki_file):\n    cmd = f\"wget https://huggingface.co/datasets/Cohere/BinaryVectorDB/resolve/main/simple-wikipedia-example.jsonl.gz\"\n    os.system(cmd)\n\n# Create the vector DB with an empty folder\n# Ensure that you have set your Cohere API key via: export COHERE_API_KEY=<<YOUR_KEY>>\ndb_folder = \"path_to_an_empty_folder/\"\ndb = BinaryVectorDB(db_folder)\n\nif len(db) > 0:\n    exit(f\"The database {db_folder} is not empty. Please provide an empty folder to create a new database.\")\n\n# Read all docs from the jsonl.gz file\ndocs = []\nwith gzip.open(simplewiki_file) as fIn:\n    for line in fIn:\n        docs.append(json.loads(line))\n\n#Limit it to 10k docs to make the next step a bit faster\ndocs = docs[0:10_000]\n\n# Add all documents to the DB\n# docs2text defines a function that maps our documents to a string\n# This string is then embedded with the state-of-the-art Cohere embedding model\ndb.add_documents(doc_ids=list(range(len(docs))), docs=docs, docs2text=lambda doc: doc['title']+\" \"+doc['text'])\n```\n\nThe document can be any Python serializable object. You need to provide a function for `docs2text` that map your document to a string. In the above example, we concatenate the title and text field. This string is send to the embedding model to produce the needed text embeddings.\n\n\n\n## Updating & Deleting Documents\n\nSee [examples/add_update_delete.py](examples/add_update_delete.py) for an example script how to add/update/delete documents in the database.\n\n# Is this a real Vector Database?\n\nNot really. The repository is meant mostly for educational purposes to show techniques how to scale to large datasets. The focus was more on ease of use and some critical aspects are missing in the implementation, like multi-process safety, rollbacks etc. \n\nIf you actually wants to go into production, use a proper vector database like [Vespa.ai](https://blog.vespa.ai/scaling-large-vector-datasets-with-cohere-binary-embeddings-and-vespa/), that allows you to achieve similar results.\n\n",
    "bugtrack_url": null,
    "license": "Apache License 2.0",
    "summary": "Efficient vector DB using binary & int8 embeddings",
    "version": "0.0.2",
    "project_urls": {
        "Download": "https://github.com/cohere-ai/BinaryVectorDB/archive/v0.0.1.zip",
        "Homepage": "https://github.com/cohere-ai/BinaryVectorDB"
    },
    "split_keywords": [
        "vector",
        "database"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4607235898cf94ddb4f0c00a33f49f7dd1b4ff2d23768f960f573ca82ac87d8c",
                "md5": "dd97e0586c18a642f544a2665a29200b",
                "sha256": "efa7351203df160906d228e0cb96a6be8e44581f7dbe859937dc0b698da25c8f"
            },
            "downloads": -1,
            "filename": "BinaryVectorDB-0.0.2.tar.gz",
            "has_sig": false,
            "md5_digest": "dd97e0586c18a642f544a2665a29200b",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": null,
            "size": 10418,
            "upload_time": "2024-03-26T09:06:04",
            "upload_time_iso_8601": "2024-03-26T09:06:04.506949Z",
            "url": "https://files.pythonhosted.org/packages/46/07/235898cf94ddb4f0c00a33f49f7dd1b4ff2d23768f960f573ca82ac87d8c/BinaryVectorDB-0.0.2.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-03-26 09:06:04",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "cohere-ai",
    "github_project": "BinaryVectorDB",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": false,
    "lcname": "binaryvectordb"
}
        
Elapsed time: 0.21805s