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

This version

4.0.1

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.1-cp313-cp313-manylinux2014_x86_64.whl (16.4 MB view details)

Uploaded CPython 3.13

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

Uploaded CPython 3.13

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

Uploaded CPython 3.13 macOS 11.0+ ARM64

deeplake-4.0.1-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.1-cp312-cp312-manylinux2014_x86_64.whl (16.4 MB view details)

Uploaded CPython 3.12

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

Uploaded CPython 3.12

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

Uploaded CPython 3.12 macOS 11.0+ ARM64

deeplake-4.0.1-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.1-cp311-cp311-manylinux2014_x86_64.whl (16.4 MB view details)

Uploaded CPython 3.11

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

Uploaded CPython 3.11

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

Uploaded CPython 3.11 macOS 11.0+ ARM64

deeplake-4.0.1-cp311-cp311-macosx_10_12_x86_64.whl (14.3 MB view details)

Uploaded CPython 3.11 macOS 10.12+ x86-64

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

Uploaded CPython 3.10

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

Uploaded CPython 3.10

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

Uploaded CPython 3.10 macOS 11.0+ ARM64

deeplake-4.0.1-cp310-cp310-macosx_10_12_x86_64.whl (14.3 MB view details)

Uploaded CPython 3.10 macOS 10.12+ x86-64

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

Uploaded CPython 3.9

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

Uploaded CPython 3.9

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

Uploaded CPython 3.9 macOS 11.0+ ARM64

deeplake-4.0.1-cp39-cp39-macosx_10_12_x86_64.whl (14.3 MB view details)

Uploaded CPython 3.9 macOS 10.12+ x86-64

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

Uploaded CPython 3.8

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

Uploaded CPython 3.8

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

Uploaded CPython 3.8 macOS 11.0+ ARM64

deeplake-4.0.1-cp38-cp38-macosx_10_12_x86_64.whl (14.3 MB view details)

Uploaded CPython 3.8 macOS 10.12+ x86-64

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

Uploaded CPython 3.7m

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

Uploaded CPython 3.7m

File details

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

File metadata

File hashes

Hashes for deeplake-4.0.1-cp313-cp313-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 74c299964019585a8aa6a2dce2551abf607d2bd8966f479016b327ec82523ab4
MD5 83ff852d92283290e30e8952d2ae3554
BLAKE2b-256 509429f0db68492203ac502f704276e6d3e23cbb90c60387e17cf86cc880078a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for deeplake-4.0.1-cp313-cp313-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2c17bc55e03225f492d20eb3c76aff44585d30f8c84de3004200b0a6d9a1b42e
MD5 406483d1f13e8805dba2cf5f66ef9133
BLAKE2b-256 12316fb9393450461d9ec47633acc245b6576d352f3ed9ae9546012c6075ea06

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for deeplake-4.0.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 bf4f3720f9063d8c030d9e54a781e0a265880f3df295a336d6462aabc80c5921
MD5 daa50d4694c72aa855126f983390280f
BLAKE2b-256 69faa0d904ab65065afb9c5539c0a2e1ed93c3c3509bf4b96b48701dca805e7e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for deeplake-4.0.1-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 823f6c44b38918d27783ded9dd92f018b63e8568d52d0bedecec2e025abd2db0
MD5 2c745d2717f82c3a8f9537e0069d16b3
BLAKE2b-256 81c53893d6ccae03e05449dca1c8602edd142de17113b4e7d2a02ab70d437c76

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for deeplake-4.0.1-cp312-cp312-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c51288929b1e52188909747e1b129902164564a05be4103e93a8234fe359863f
MD5 782e863bc89c83325204bad7feacbb95
BLAKE2b-256 e4e872e4cd040c8ef478bf865dfa985ebde44b50de93abca89d6ac1fdfd6452e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for deeplake-4.0.1-cp312-cp312-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 47773722b50963167497c2056dbc9ebb929427fc317400be32715401cebaebf7
MD5 051006a225d6dedc7b38ab46b21a80b6
BLAKE2b-256 50af886c426edb3d63faa4322c3dc12a2c672e0a5a4e671d0d1240fbfa909471

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for deeplake-4.0.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2811381a02b0b398991701eacce7240876e31ab67fcc0d5009726eb67a70938a
MD5 bdf3b31974d952e42bbe83bbc2fa51c6
BLAKE2b-256 91411967cdad6eaa567277acdc9136913f46dc9a3d454b5f6052375682c78832

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for deeplake-4.0.1-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 918b3d86ef181f8dbb8674973e307630b9249a0e6bc089c5dc15cf7b5f100100
MD5 cb17bfdcf70ba06bbec2d0c54df4168e
BLAKE2b-256 8e64144a631e232fda57d5883937f1f4d8ee1110befa16f668a9e052dffa2c30

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for deeplake-4.0.1-cp311-cp311-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 513f8a360fa47acfbbedfa4d1200109e55b7b2ea0aaa82138b0f6bb4db56ec21
MD5 8ec087a697f78df2e32fdc75093cc479
BLAKE2b-256 4945f6ef1f76fad6d4ac81bac0207f11736ca67778a6ff90916d92cc880e9595

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for deeplake-4.0.1-cp311-cp311-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a85de8f12b5e0bf6068dba0e2286fb79618986e6047a9cc2c5abe47552467269
MD5 26543d460803a751de0e72c4ce0d5d3c
BLAKE2b-256 edf293b4f35c1e2c5cf4af0b796d7407049db20288817f464f4404b19981ab72

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for deeplake-4.0.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 877f475318b4e53b1d98a3392bf95e7b25d5a5925ded18c6eadd8da111f5b605
MD5 8d868bbea51aad2da62fbec06835f298
BLAKE2b-256 6638c39cdbc00aa2d3501a87b79f471d0a1bd2e8b921d8017e9c6dff954186f4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for deeplake-4.0.1-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 8d871a01d5fc4f34af60be7c95e29b6b1c56c05f13a0669c9cb53e3bffb09cb7
MD5 8c21516de608a86794cc0609dd1a3d32
BLAKE2b-256 d6894f7234d6f902457aa7d5c7c6f08e596a52bf472049dc7f3468a9a3a820a9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for deeplake-4.0.1-cp310-cp310-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 316ed34a1af3b8477f89206fdb9d1106c28e025db14fd61600bad17f7d51010c
MD5 26b699874ef54eff2544a9f89f2f9204
BLAKE2b-256 03c0fb914216c07818c6d8b76967a702fbb12a1ad1596d992bf68c4b56be5bff

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for deeplake-4.0.1-cp310-cp310-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 070297f7a45efebe483d4d8abc6500c5930ec26275f0597d914ec743cc2adea4
MD5 f6a98d40feb225aca1c33d3ea79809c3
BLAKE2b-256 63f721b476cd111017a17860b6d8218940a917cad9f7365c2681103f445f66cb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for deeplake-4.0.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ec83b0364fc9f989503e7c10a304b47748f54129216b0c548b1463d4bb3428f1
MD5 ad4fce2934f8e5ad61608a0cbcc5ec9e
BLAKE2b-256 731a085bd78fe01464ef252ed96ecfbd8d56002518915e91016ff0f2773200f9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for deeplake-4.0.1-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 133eaf74e7fdda63a36b3ca79aa3edad2109ae6aaa145faefb477aab69d23075
MD5 4aeb1e3a2d0f0d591daf7d1c47ff09e8
BLAKE2b-256 1d8b46fafa1cfdcc006b1c520f89807b74b549b25db8aee30e78c09dc322a6ca

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for deeplake-4.0.1-cp39-cp39-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7004912a423737a4f0acbf3ab34496b95c316d945dfe97f40a886365d33a1a34
MD5 756ba7cbd03e6ad5f013988b952ab6e4
BLAKE2b-256 7d7c1afe8bd77e6b9d670827116fc8829fcffc14f11fb2c5e32f8403e9c9aefd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for deeplake-4.0.1-cp39-cp39-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5f6af38b78ceb0b99aa7091283183f2c6120d12df5e740f4e156d25a3cb280af
MD5 e55b19f09a25cbf5353429957fe47b7d
BLAKE2b-256 031fb7d913bfa753de3f26a72d797c8ffae93bda9a5ff7829804c09b2f3de4d1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for deeplake-4.0.1-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4a4bc7b1425f456d50351d059670dce7b02b663be3379f4a0d7f53f6d3c6790c
MD5 37485e439202ff4d76a0d46a687650be
BLAKE2b-256 8727d9e272ee93b770c59d625227378881a41b445b9d465c6303805caea24620

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for deeplake-4.0.1-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 5705b59d548883d0f8249c8895bf179bae8e83825570f2c10b9ddf8b61d69a9d
MD5 56168c2ff6e33ec894f31a69038c884f
BLAKE2b-256 060a7f83474e481892d4d1171a3c8041c14a60c45ed7d3fb3c0dfd0f2582d6ca

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for deeplake-4.0.1-cp38-cp38-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e9fd62f831c0a4b902587362cbe5f3de6c411affa8adf16b74a6e8b7d98fb31c
MD5 801a87630facefa55ece35102698ffea
BLAKE2b-256 2cd952ddc3cc2b93e7ae71780a6d5085e67c1838a1d3f49cfb596b1e5e5e59c5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for deeplake-4.0.1-cp38-cp38-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 84a96591ea9eb080cd0ad2213caccce478512c1ac609816f0b74758fd964a339
MD5 66d166332885bec084ac5297729f986d
BLAKE2b-256 a07e0fe97282a3fcbfd0e4fdd9ef9f04b601d3cc284db8563947ba1f6a69714e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for deeplake-4.0.1-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 dc29e773297ad29eecebcf33cc4c991e9467b212d17b3404970e1681c0b7c53f
MD5 7ce7ee91f239ae72f0688402c1282a1e
BLAKE2b-256 15c567077bcea408e7c2b15fcb102a32a12f32f515cc1299ea1932844131d06f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for deeplake-4.0.1-cp38-cp38-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 b183b541a73917efe991eb8795d3a41712055a07d6f2982602627a085bbbd1a5
MD5 e8797776a145a562efae059431cb0e92
BLAKE2b-256 c981193f03de5687cade5cc0a91a6f6b8b42358c980a2b553227f1832338b01a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for deeplake-4.0.1-cp37-cp37m-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3f1dc0bb62e2ab6b14267a2a9ce7fc92b5737cad852a48177e768ce3c138314f
MD5 a59c2c28150059d917a70eefb235b53f
BLAKE2b-256 ffb8cdb6f4a8140d4b8a53adf3c4802a384a1444d15e721a741af4e7fd1ff6a1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for deeplake-4.0.1-cp37-cp37m-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 428c19ca923d4933fcc881f1b51691a16ecd8f77f68556808799bfcb446cd5a6
MD5 a6fc53d5a3a847b9b78e4298dd8a2250
BLAKE2b-256 5296696ec4721e7f17a72c1160c4fe2de0da611b7a82ae51eb09d4a4d47a2438

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