Skip to main content

Data Lake for Multi-Modal AI Search

Project description


Deep Lake: Database for AI

PyPI version PyPI version

DocsGet StartedAPI ReferenceLangChain & VectorDBs CourseBlogWhitepaperSlackTwitter

What is Deep Lake?

Deep Lake is a Database for AI powered by a storage format optimized for deep-learning applications. Deep Lake can be used for:

  1. Storing and searching data plus vectors while building LLM applications
  2. Managing datasets while training deep learning models

Deep Lake simplifies the deployment of enterprise-grade LLM-based products by offering storage for all data types (embeddings, audio, text, videos, images, dicom, pdfs, annotations, and more), querying and vector search, data streaming while training models at scale, data versioning and lineage, and integrations with popular tools such as LangChain, LlamaIndex, Weights & Biases, and many more. Deep Lake works with data of any size, it is serverless, and it enables you to store all of your data in your own cloud and in one place. Deep Lake is used by Intel, Bayer Radiology, Matterport, ZERO Systems, Red Cross, Yale, & Oxford.

Deep Lake includes the following features:

Multi-Cloud Support (S3, GCP, Azure) Use one API to upload, download, and stream datasets to/from S3, Azure, GCP, Activeloop cloud, local storage, or in-memory storage. Compatible with any S3-compatible storage such as MinIO.
Native Compression with Lazy NumPy-like Indexing Store images, audio, and videos in their native compression. Slice, index, iterate, and interact with your data like a collection of NumPy arrays in your system's memory. Deep Lake lazily loads data only when needed, e.g., when training a model or running queries.
Dataloaders for Popular Deep Learning Frameworks Deep Lake comes with built-in dataloaders for Pytorch and TensorFlow. Train your model with a few lines of code - we even take care of dataset shuffling. :)
Integrations with Powerful Tools Deep Lake has integrations with Langchain and LLamaIndex as a vector store for LLM apps, Weights & Biases for data lineage during model training, MMDetection for training object detection models, and MMSegmentation for training semantic segmentation models.
100+ most-popular image, video, and audio datasets available in seconds Deep Lake community has uploaded 100+ image, video and audio datasets like MNIST, COCO, ImageNet, CIFAR, GTZAN and others.
Instant Visualization Support in the Deep Lake App Deep Lake datasets are instantly visualized with bounding boxes, masks, annotations, etc. in Deep Lake Visualizer (see below).

Visualizer

🚀 How to install Deep Lake

Deep Lake can be installed using pip:

pip install deeplake

To access all of Deep Lake's features, please register in the Deep Lake App.

🧠 Deep Lake Code Examples by Application

Vector Store Applications

Using Deep Lake as a Vector Store for building LLM applications:

- Vector Store Quickstart

- Vector Store Tutorials

- LangChain Integration

- LlamaIndex Integration

- Image Similarity Search with Deep Lake

Deep Learning Applications

Using Deep Lake for managing data while training Deep Learning models:

- Deep Learning Quickstart

- Tutorials for Training Models

⚙️ Integrations

Deep Lake offers integrations with other tools in order to streamline your deep learning workflows. Current integrations include:

📚 Documentation

Getting started guides, examples, tutorials, API reference, and other useful information can be found on our documentation page.

🎓 For Students and Educators

Deep Lake users can access and visualize a variety of popular datasets through a free integration with Deep Lake's App. Universities can get up to 1TB of data storage and 100,000 monthly queries on the Tensor Database for free per month. Chat in on our website: to claim the access!

👩‍💻 Comparisons to Familiar Tools

Deep Lake vs Chroma

Both Deep Lake & ChromaDB enable users to store and search vectors (embeddings) and offer integrations with LangChain and LlamaIndex. However, they are architecturally very different. ChromaDB is a Vector Database that can be deployed locally or on a server using Docker and will offer a hosted solution shortly. Deep Lake is a serverless Vector Store deployed on the user’s own cloud, locally, or in-memory. All computations run client-side, which enables users to support lightweight production apps in seconds. Unlike ChromaDB, Deep Lake’s data format can store raw data such as images, videos, and text, in addition to embeddings. ChromaDB is limited to light metadata on top of the embeddings and has no visualization. Deep Lake datasets can be visualized and version controlled. Deep Lake also has a performant dataloader for fine-tuning your Large Language Models.

Deep Lake vs Pinecone

Both Deep Lake and Pinecone enable users to store and search vectors (embeddings) and offer integrations with LangChain and LlamaIndex. However, they are architecturally very different. Pinecone is a fully-managed Vector Database that is optimized for highly demanding applications requiring a search for billions of vectors. Deep Lake is serverless. All computations run client-side, which enables users to get started in seconds. Unlike Pinecone, Deep Lake’s data format can store raw data such as images, videos, and text, in addition to embeddings. Deep Lake datasets can be visualized and version controlled. Pinecone is limited to light metadata on top of the embeddings and has no visualization. Deep Lake also has a performant dataloader for fine-tuning your Large Language Models.

Deep Lake vs Weaviate

Both Deep Lake and Weaviate enable users to store and search vectors (embeddings) and offer integrations with LangChain and LlamaIndex. However, they are architecturally very different. Weaviate is a Vector Database that can be deployed in a managed service or by the user via Kubernetes or Docker. Deep Lake is serverless. All computations run client-side, which enables users to support lightweight production apps in seconds. Unlike Weaviate, Deep Lake’s data format can store raw data such as images, videos, and text, in addition to embeddings. Deep Lake datasets can be visualized and version controlled. Weaviate is limited to light metadata on top of the embeddings and has no visualization. Deep Lake also has a performant dataloader for fine-tuning your Large Language Models.

Deep Lake vs DVC

Deep Lake and DVC offer dataset version control similar to git for data, but their methods for storing data differ significantly. Deep Lake converts and stores data as chunked compressed arrays, which enables rapid streaming to ML models, whereas DVC operates on top of data stored in less efficient traditional file structures. The Deep Lake format makes dataset versioning significantly easier compared to traditional file structures by DVC when datasets are composed of many files (i.e., many images). An additional distinction is that DVC primarily uses a command-line interface, whereas Deep Lake is a Python package. Lastly, Deep Lake offers an API to easily connect datasets to ML frameworks and other common ML tools and enables instant dataset visualization through Activeloop's visualization tool.

Deep Lake vs MosaicML MDS format
  • Data Storage Format: Deep Lake operates on a columnar storage format, whereas MDS utilizes a row-wise storage approach. This fundamentally impacts how data is read, written, and organized in each system.
  • Compression: Deep Lake offers a more flexible compression scheme, allowing control over both chunk-level and sample-level compression for each column or tensor. This feature eliminates the need for additional compressions like zstd, which would otherwise demand more CPU cycles for decompressing on top of formats like jpeg.
  • Shuffling: MDS currently offers more advanced shuffling strategies.
  • Version Control & Visualization Support: A notable feature of Deep Lake is its native version control and in-browser data visualization, a feature not present for MosaicML data format. This can provide significant advantages in managing, understanding, and tracking different versions of the data.
Deep Lake vs TensorFlow Datasets (TFDS)

Deep Lake and TFDS seamlessly connect popular datasets to ML frameworks. Deep Lake datasets are compatible with both PyTorch and TensorFlow, whereas TFDS are only compatible with TensorFlow. A key difference between Deep Lake and TFDS is that Deep Lake datasets are designed for streaming from the cloud, whereas TFDS must be downloaded locally prior to use. As a result, with Deep Lake, one can import datasets directly from TensorFlow Datasets and stream them either to PyTorch or TensorFlow. In addition to providing access to popular publicly available datasets, Deep Lake also offers powerful tools for creating custom datasets, storing them on a variety of cloud storage providers, and collaborating with others via simple API. TFDS is primarily focused on giving the public easy access to commonly available datasets, and management of custom datasets is not the primary focus. A full comparison article can be found here.

Deep Lake vs HuggingFace Deep Lake and HuggingFace offer access to popular datasets, but Deep Lake primarily focuses on computer vision, whereas HuggingFace focuses on natural language processing. HuggingFace Transforms and other computational tools for NLP are not analogous to features offered by Deep Lake.
Deep Lake vs WebDatasets Deep Lake and WebDatasets both offer rapid data streaming across networks. They have nearly identical steaming speeds because the underlying network requests and data structures are very similar. However, Deep Lake offers superior random access and shuffling, its simple API is in python instead of command-line, and Deep Lake enables simple indexing and modification of the dataset without having to recreate it.
Deep Lake vs Zarr Deep Lake and Zarr both offer storage of data as chunked arrays. However, Deep Lake is primarily designed for returning data as arrays using a simple API, rather than actually storing raw arrays (even though that's also possible). Deep Lake stores data in use-case-optimized formats, such as jpeg or png for images, or mp4 for video, and the user treats the data as if it's an array, because Deep Lake handles all the data processing in between. Deep Lake offers more flexibility for storing arrays with dynamic shape (ragged tensors), and it provides several features that are not naively available in Zarr such as version control, data streaming, and connecting data to ML Frameworks.

Community

Join our Slack community to learn more about unstructured dataset management using Deep Lake and to get help from the Activeloop team and other users.

We'd love your feedback by completing our 3-minute survey.

As always, thanks to our amazing contributors!

Made with contributors-img.

Please read CONTRIBUTING.md to get started with making contributions to Deep Lake.

README Badge

Using Deep Lake? Add a README badge to let everyone know:

deeplake

[![deeplake](https://img.shields.io/badge/powered%20by-Deep%20Lake%20-ff5a1f.svg)](https://github.com/activeloopai/deeplake)

Disclaimers

Dataset Licenses

Deep Lake users may have access to a variety of publicly available datasets. We do not host or distribute these datasets, vouch for their quality or fairness, or claim that you have a license to use the datasets. It is your responsibility to determine whether you have permission to use the datasets under their license.

If you're a dataset owner and do not want your dataset to be included in this library, please get in touch through a GitHub issue. Thank you for your contribution to the ML community!

Usage Tracking

By default, we collect usage data using Bugout (here's the code that does it). It does not collect user data other than anonymized IP address data, and it only logs the Deep Lake library's own actions. This helps our team understand how the tool is used and how to build features that matter to you! After you register with Activeloop, data is no longer anonymous. You can always opt-out of reporting by setting an environmental variable BUGGER_OFF to True:

Citation

If you use Deep Lake in your research, please cite Activeloop using:

@article{deeplake,
  title = {Deep Lake: a Lakehouse for Deep Learning},
  author = {Hambardzumyan, Sasun and Tuli, Abhinav and Ghukasyan, Levon and Rahman, Fariz and Topchyan, Hrant and Isayan, David and Harutyunyan, Mikayel and Hakobyan, Tatevik and Stranic, Ivo and Buniatyan, Davit},
  url = {https://www.cidrdb.org/cidr2023/papers/p69-buniatyan.pdf},
  booktitle={Proceedings of CIDR},
  year = {2023},
}

Acknowledgment

This technology was inspired by our research work at Princeton University. We would like to thank William Silversmith @SeungLab for his awesome cloud-volume tool.

Project details


Release history Release notifications | RSS feed

Download files

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

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distributions

deeplake-4.0.2-cp313-cp313-manylinux2014_x86_64.whl (16.4 MB view details)

Uploaded CPython 3.13

deeplake-4.0.2-cp313-cp313-manylinux2014_aarch64.whl (15.6 MB view details)

Uploaded CPython 3.13

deeplake-4.0.2-cp313-cp313-macosx_11_0_arm64.whl (13.4 MB view details)

Uploaded CPython 3.13 macOS 11.0+ ARM64

deeplake-4.0.2-cp313-cp313-macosx_10_12_x86_64.whl (14.4 MB view details)

Uploaded CPython 3.13 macOS 10.12+ x86-64

deeplake-4.0.2-cp312-cp312-manylinux2014_x86_64.whl (16.4 MB view details)

Uploaded CPython 3.12

deeplake-4.0.2-cp312-cp312-manylinux2014_aarch64.whl (15.6 MB view details)

Uploaded CPython 3.12

deeplake-4.0.2-cp312-cp312-macosx_11_0_arm64.whl (13.4 MB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

deeplake-4.0.2-cp312-cp312-macosx_10_12_x86_64.whl (14.4 MB view details)

Uploaded CPython 3.12 macOS 10.12+ x86-64

deeplake-4.0.2-cp311-cp311-manylinux2014_x86_64.whl (16.4 MB view details)

Uploaded CPython 3.11

deeplake-4.0.2-cp311-cp311-manylinux2014_aarch64.whl (15.6 MB view details)

Uploaded CPython 3.11

deeplake-4.0.2-cp311-cp311-macosx_11_0_arm64.whl (13.4 MB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

deeplake-4.0.2-cp311-cp311-macosx_10_12_x86_64.whl (14.4 MB view details)

Uploaded CPython 3.11 macOS 10.12+ x86-64

deeplake-4.0.2-cp310-cp310-manylinux2014_x86_64.whl (16.4 MB view details)

Uploaded CPython 3.10

deeplake-4.0.2-cp310-cp310-manylinux2014_aarch64.whl (15.6 MB view details)

Uploaded CPython 3.10

deeplake-4.0.2-cp310-cp310-macosx_11_0_arm64.whl (13.4 MB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

deeplake-4.0.2-cp310-cp310-macosx_10_12_x86_64.whl (14.4 MB view details)

Uploaded CPython 3.10 macOS 10.12+ x86-64

deeplake-4.0.2-cp39-cp39-manylinux2014_x86_64.whl (16.4 MB view details)

Uploaded CPython 3.9

deeplake-4.0.2-cp39-cp39-manylinux2014_aarch64.whl (15.6 MB view details)

Uploaded CPython 3.9

deeplake-4.0.2-cp39-cp39-macosx_11_0_arm64.whl (13.4 MB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

deeplake-4.0.2-cp39-cp39-macosx_10_12_x86_64.whl (14.4 MB view details)

Uploaded CPython 3.9 macOS 10.12+ x86-64

deeplake-4.0.2-cp38-cp38-manylinux2014_x86_64.whl (16.4 MB view details)

Uploaded CPython 3.8

deeplake-4.0.2-cp38-cp38-manylinux2014_aarch64.whl (15.6 MB view details)

Uploaded CPython 3.8

deeplake-4.0.2-cp38-cp38-macosx_11_0_arm64.whl (13.4 MB view details)

Uploaded CPython 3.8 macOS 11.0+ ARM64

deeplake-4.0.2-cp38-cp38-macosx_10_12_x86_64.whl (14.4 MB view details)

Uploaded CPython 3.8 macOS 10.12+ x86-64

deeplake-4.0.2-cp37-cp37m-manylinux2014_x86_64.whl (16.4 MB view details)

Uploaded CPython 3.7m

deeplake-4.0.2-cp37-cp37m-manylinux2014_aarch64.whl (15.6 MB view details)

Uploaded CPython 3.7m

File details

Details for the file deeplake-4.0.2-cp313-cp313-manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for deeplake-4.0.2-cp313-cp313-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 93513120e2abae4dee24016610adf4199a6b2780a351b13481ffa83182bd68ef
MD5 3f145d88b79528f082f6a4745b970186
BLAKE2b-256 2d12677249210db4a053ad038e478d53b9bf8750f44f97833b12686c02e7ee16

See more details on using hashes here.

File details

Details for the file deeplake-4.0.2-cp313-cp313-manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for deeplake-4.0.2-cp313-cp313-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 36ba03c6623b3a37852bb57cde47a1f00e147114061e9e8963438943251650b6
MD5 441693c5abbea41b20149a497c238cfa
BLAKE2b-256 bd94f7053d0cea15dfc93191826e6611b9f5719b1bd55f168f918dbbe0321364

See more details on using hashes here.

File details

Details for the file deeplake-4.0.2-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for deeplake-4.0.2-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b6425e715c87c5f6cd2cc8dff626f36fc0bdd4ad8c7d73f75aa08d99a4cf970e
MD5 a9e41aad081a9255ed21a142e07262e8
BLAKE2b-256 b0f41d0ccb221db2a3bd372438943294932e70aa6c29f7249fc75bd7d19bda2f

See more details on using hashes here.

File details

Details for the file deeplake-4.0.2-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for deeplake-4.0.2-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 3d40bb4df18d7dca2e9e74ace775f3437b0881f461c7f118207172af4693b636
MD5 e27477f93039758b2acdf37b426f1260
BLAKE2b-256 3aa477c2602052a785eb34d1fa226a12c2a79d70a97283f683e10861f0f785e1

See more details on using hashes here.

File details

Details for the file deeplake-4.0.2-cp312-cp312-manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for deeplake-4.0.2-cp312-cp312-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 708b991aa3f9ef87fe4d40745c1cb6b8be3ca7530b4276ec1dabd358687174ed
MD5 86fc459686a45b5fdcea21f8b73cbd33
BLAKE2b-256 21cb295c532a7abc9e844ef86ff1df39a0ea2e25fb044aaf70a3877072c9731a

See more details on using hashes here.

File details

Details for the file deeplake-4.0.2-cp312-cp312-manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for deeplake-4.0.2-cp312-cp312-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8808e7f8fd0e955ca7adca0aa274cf4964d2760e1a14113c4e39d06027e684f8
MD5 e2e525cbe791935fe14962a6368d79cb
BLAKE2b-256 64a343dc36b57c415dae067956b96cd01bab9839c02b1db462189973d4d9b770

See more details on using hashes here.

File details

Details for the file deeplake-4.0.2-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for deeplake-4.0.2-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c13e58179b27b2fd2360e4a2fb3360e2877dd1c8de4c804ba686debfbde8078d
MD5 579d5d79e05cef0271d179b8b04f3e4d
BLAKE2b-256 9435414666bc966f36f7f0267d69694570ccd1100a15cb5931dc3899d1f57f95

See more details on using hashes here.

File details

Details for the file deeplake-4.0.2-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for deeplake-4.0.2-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 7cd339c321c696384f1fdded79b0492cbd883fcb1684b88c10d98328ce0369af
MD5 fba56f729d2b09c9140cfb5a37fa092b
BLAKE2b-256 79eee0199edd8b439999f800975cbe5aab0c1d32c62f2eb01f2105743123b668

See more details on using hashes here.

File details

Details for the file deeplake-4.0.2-cp311-cp311-manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for deeplake-4.0.2-cp311-cp311-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5e378246ca0ebcd81d3c40c877e7f206a2f119625fbaf11c6c677053a83b3592
MD5 80bc307ce59be3725cd30da7333f9a3f
BLAKE2b-256 fc115d6ab04cac1d2fd0dbb5b6633c07e13e7748a29df575d4bd0ea122b6837e

See more details on using hashes here.

File details

Details for the file deeplake-4.0.2-cp311-cp311-manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for deeplake-4.0.2-cp311-cp311-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 114f60cf9de26c5fddf4dfa9bf9800d6dc12ad6fdcf973f9cd5c838e140b29f7
MD5 5d08be6c2b16b6c2164a51e83dace7bc
BLAKE2b-256 25f2b1926e6959da07b71468f5583febfa924c662441f859f1343e6980a20a5e

See more details on using hashes here.

File details

Details for the file deeplake-4.0.2-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for deeplake-4.0.2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 09ed3973510be9ec44deffcdbf4cff0f578b489660831ab8899f7c39efb7972c
MD5 d6bb622700da24bda675b8317589f136
BLAKE2b-256 3710b5b353384cfdeed74a1c60cea3ce8bec1cac00588789ad49286a43977f0c

See more details on using hashes here.

File details

Details for the file deeplake-4.0.2-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for deeplake-4.0.2-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 a103ae91040f99c8dcaa5bfba524f26b55d6942d2654b4aa5c8ebbab64c2b990
MD5 36092a358465e602913a5cc323fcabe9
BLAKE2b-256 1b4fcfeff733a2ac762cefb823b92cf248171c6398eb261a8c2c62a152e055de

See more details on using hashes here.

File details

Details for the file deeplake-4.0.2-cp310-cp310-manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for deeplake-4.0.2-cp310-cp310-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2924e94998103758b9fc5f8359abbc6fe4017dca5703549f38a3eadab4acb7aa
MD5 16b24b537eea5a66ddcb8c60793ca9bf
BLAKE2b-256 f0e3478ed5e85d6e6d0acdeb2180c2a59d01956c3df9a251b3cc6d05fa2f64ee

See more details on using hashes here.

File details

Details for the file deeplake-4.0.2-cp310-cp310-manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for deeplake-4.0.2-cp310-cp310-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b428755e6b2be8c5c3faa1f8fb386ed41397f406da80525a959aafb84aa3ae1d
MD5 72f6c4ecb28bcc0eef2f0bfbc2cd236b
BLAKE2b-256 0764ba651b2846e81fa0f2bdd616dfb341d52e8fbaca4baa48ca2af48532db11

See more details on using hashes here.

File details

Details for the file deeplake-4.0.2-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for deeplake-4.0.2-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 688693bc0d369a635462fb26a123c800de17f3677102ebee29f14fdeb1d92e1f
MD5 383f10c9edecf8ddd2d4c79361544d8a
BLAKE2b-256 bdc274051ac1ff30b1783309724435fd404184b03329da52cbd74b702f7c7273

See more details on using hashes here.

File details

Details for the file deeplake-4.0.2-cp310-cp310-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for deeplake-4.0.2-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 d9e796df649530b17218fc94b1f6ade0515987533210ecb23f7dc31bccb1b9f8
MD5 449f8fcb51c3f9cf7ac51093b6b2669f
BLAKE2b-256 6a6ae3410989e7ac1e891fc66f311944ca74915dda4a5ebb06e74ebaf76f6cca

See more details on using hashes here.

File details

Details for the file deeplake-4.0.2-cp39-cp39-manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for deeplake-4.0.2-cp39-cp39-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b3a15bae765f1eb7c25cc36b6a49d0a6ac26d4f6df3bb71a98b074417433d9fa
MD5 1bb6e730137942ac06c5d1aa2fdfe194
BLAKE2b-256 43ff9510469d48fdd12752d3b3ebc088cc195327b2e67ce4bb9b9b7a14d6be74

See more details on using hashes here.

File details

Details for the file deeplake-4.0.2-cp39-cp39-manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for deeplake-4.0.2-cp39-cp39-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ba9223cd5c6038435134bbc447995fd6c0631e04c39d681ed83cfcbd53477965
MD5 23ea401e80ccb8372e663aa177982005
BLAKE2b-256 e110aa1867e1b0260ae7f25fca3009709fe9279357c19175ec93e03b5467bb2d

See more details on using hashes here.

File details

Details for the file deeplake-4.0.2-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for deeplake-4.0.2-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b9fa7e9b3e635eb8a64ff5a189a6e1252e392fd3bfbe56c9dfad8d3c99764a3a
MD5 ef747fd84930c2eb8931c5cb5bbaa176
BLAKE2b-256 7172d182fcf5626b347f57141b6bd1813f136254327505aaa906afbd1003839e

See more details on using hashes here.

File details

Details for the file deeplake-4.0.2-cp39-cp39-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for deeplake-4.0.2-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 ac8ff4f1e2684ed21d9e8136f407c52921235b2b7b995f4565abea5f6650574f
MD5 1ce3d2247bdfa0b0a0bbb696b1b2ba74
BLAKE2b-256 acb12f0b15bdd6d7ec2c4eae5d350a180d403b12dbb86af93ac786afee873ce2

See more details on using hashes here.

File details

Details for the file deeplake-4.0.2-cp38-cp38-manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for deeplake-4.0.2-cp38-cp38-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c485dd523f93d03afc0f898b3b5a611671f3746f19d0625843c837e34710fcb9
MD5 e1a9a6ed8e08ee0dd65dbd9460d2910b
BLAKE2b-256 2fc16fab64591f8459e7878f2dc6d0aa164e06b5039fa4809fac2fd318284d5c

See more details on using hashes here.

File details

Details for the file deeplake-4.0.2-cp38-cp38-manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for deeplake-4.0.2-cp38-cp38-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 aae0b650a1c45bd2d43910a87ff53bd498545ddddc7c0091b82cb6c74d259ce1
MD5 c0b17291b646bd78997e909b0294ce63
BLAKE2b-256 9823e5c04d504ea92550704702a8a3fe2ad3f5d099a7586e21b52a2be529f944

See more details on using hashes here.

File details

Details for the file deeplake-4.0.2-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for deeplake-4.0.2-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6418b8f1c44c27bc9ab1a968f71deaa568ae0068dda672b73a9dc756f91bd9c3
MD5 50eae5c271487fd0443b963a10c5f404
BLAKE2b-256 7752d0375e33338b41d14a830fcf7ee19e49bc27df24b288e7234291bc83de5a

See more details on using hashes here.

File details

Details for the file deeplake-4.0.2-cp38-cp38-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for deeplake-4.0.2-cp38-cp38-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 e217476e03c61dac1cdd66d44d1dbf12dea0883d61679068921736ca8998068b
MD5 ed64d3be1db0c6e34599b3622cff6129
BLAKE2b-256 7833574dd9b89dc199fe25ce72204a86c2c4398772abae31f496f74e00d1026c

See more details on using hashes here.

File details

Details for the file deeplake-4.0.2-cp37-cp37m-manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for deeplake-4.0.2-cp37-cp37m-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 04408b9c54cd6a5f812f411a65db3bd9c788134fabc51f8a68cb0c81a18e4d21
MD5 a150b2cad6d12fe04f9fe418a07172e5
BLAKE2b-256 338ade4b15d72102a3cda84c1597a9fb6aceba818684f52257ace1d4186a66f8

See more details on using hashes here.

File details

Details for the file deeplake-4.0.2-cp37-cp37m-manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for deeplake-4.0.2-cp37-cp37m-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 95e122190c60b0591053e52d14812c7317c459b1cfda6d444731fcb7ed724d1f
MD5 2aad4a946703b12f31055d3f88ee2cbc
BLAKE2b-256 6e5a098f3ce01b9210f285f9a5d83ba120e6919dbf53f9df2184ca8924640e01

See more details on using hashes here.

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