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

Uploaded CPython 3.13

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

Uploaded CPython 3.13

deeplake-4.0.3-cp313-cp313-macosx_11_0_arm64.whl (13.5 MB view details)

Uploaded CPython 3.13 macOS 11.0+ ARM64

deeplake-4.0.3-cp313-cp313-macosx_10_12_x86_64.whl (14.5 MB view details)

Uploaded CPython 3.13 macOS 10.12+ x86-64

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

Uploaded CPython 3.12

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

Uploaded CPython 3.12

deeplake-4.0.3-cp312-cp312-macosx_11_0_arm64.whl (13.5 MB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

deeplake-4.0.3-cp312-cp312-macosx_10_12_x86_64.whl (14.5 MB view details)

Uploaded CPython 3.12 macOS 10.12+ x86-64

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

Uploaded CPython 3.11

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

Uploaded CPython 3.11

deeplake-4.0.3-cp311-cp311-macosx_11_0_arm64.whl (13.5 MB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

deeplake-4.0.3-cp311-cp311-macosx_10_12_x86_64.whl (14.5 MB view details)

Uploaded CPython 3.11 macOS 10.12+ x86-64

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

Uploaded CPython 3.10

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

Uploaded CPython 3.10

deeplake-4.0.3-cp310-cp310-macosx_11_0_arm64.whl (13.5 MB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

deeplake-4.0.3-cp310-cp310-macosx_10_12_x86_64.whl (14.5 MB view details)

Uploaded CPython 3.10 macOS 10.12+ x86-64

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

Uploaded CPython 3.9

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

Uploaded CPython 3.9

deeplake-4.0.3-cp39-cp39-macosx_11_0_arm64.whl (13.5 MB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

deeplake-4.0.3-cp39-cp39-macosx_10_12_x86_64.whl (14.5 MB view details)

Uploaded CPython 3.9 macOS 10.12+ x86-64

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

Uploaded CPython 3.8

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

Uploaded CPython 3.8

deeplake-4.0.3-cp38-cp38-macosx_11_0_arm64.whl (13.5 MB view details)

Uploaded CPython 3.8 macOS 11.0+ ARM64

deeplake-4.0.3-cp38-cp38-macosx_10_12_x86_64.whl (14.5 MB view details)

Uploaded CPython 3.8 macOS 10.12+ x86-64

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

Uploaded CPython 3.7m

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

Uploaded CPython 3.7m

File details

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

File metadata

File hashes

Hashes for deeplake-4.0.3-cp313-cp313-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f41ac11f1ce06828495961a603fd553914fbf78fdbb3c39b671377490c1a15c0
MD5 d71a3fcb3cf059d3a6d84f88db909d06
BLAKE2b-256 57d59074e41622a8cbb92f06bbab9bf2a7170a3ad0a5178b6b24cc66d67104ad

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for deeplake-4.0.3-cp313-cp313-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f25c84be39fb1efef2dfe4f13ad1c73c50dc361bc0a345d77fa161585b24e42c
MD5 3c15e5ce9fe5ffba50d30cf20ef28134
BLAKE2b-256 b51127bd53b93e744852d291e886992e5802f3ab147d0d4b12c9083089a6df8d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for deeplake-4.0.3-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 77cc2ac88e394789ab931471461d5f39584913f0175143031da2a42565f0e3c3
MD5 9d828ba0fc165022d38189cb2e3a8286
BLAKE2b-256 f5094c1aa29050df1d51785c1888810e0298f5c6b9db1ca68c9ce7b9361dbf26

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for deeplake-4.0.3-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 570c4c670c3826d219f4cfd39e661063d2eaef4093ebf990310db9fd8ad190d2
MD5 e0ecf8996c514b037848d367433dd5b1
BLAKE2b-256 787f86659b7621bbae4a5a4de0031a2529528a2da84bac116b67bfa4e78f737c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for deeplake-4.0.3-cp312-cp312-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7fbfd7c5fa72daee15d9a2d35b94defdb1e56a438ec316b9f533dc0a147cf515
MD5 0e2bdd04072e4cb8d409e9ee9ed4f568
BLAKE2b-256 574c845a96a6d473c5f464c57dbdf1c910e07e517eace9f3a0ee2b84c1fa2711

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for deeplake-4.0.3-cp312-cp312-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7268332bba45fa04fbf56a03cb1937bf9b881e927e4ccf8bede82c4aec74ae7c
MD5 c7f7943295a5df31c53e222555c213b8
BLAKE2b-256 b19b56ff2d2584fc37e03d6b96684fc0caabf155d4e34a53f4853608e2bc3c40

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for deeplake-4.0.3-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 26ffe38ec26d36a9b91a45babfd03fe3f257001d6c017e770064056a6a1e1d91
MD5 b9d70f0524cf60db4368d92c4f6f1c2d
BLAKE2b-256 7d8b464d3b30661517f92090901c8e2219afc874135833732591fce7b47330de

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for deeplake-4.0.3-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 a3ad1afb83ff1beb59da398d865e21d0c78ae961933c4926e25b985e51e524bd
MD5 4cd043cf04d865e5f9d1419b15e891a0
BLAKE2b-256 e654cfa22f90e6bb5ac7377c1d9e9a82fe6791f42ddcc46e09e6dc69272ba045

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for deeplake-4.0.3-cp311-cp311-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8c6c5ab40817087e39962896c6dd32dcf1d00012e1b1231e8c026d20c26e1048
MD5 7646b6d9a7f7ab3128ba180924ec2c56
BLAKE2b-256 9fa998573d0fe7a093daf3507e566f0e87b1f4234746bddeeb6ccd844fc48163

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for deeplake-4.0.3-cp311-cp311-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 64ee4df41aa2e80e7935ffed1bf5909499ecbccdcdb2630641eddc1b0757120f
MD5 3fd902596d3df50560ff0aae635003e2
BLAKE2b-256 793a1339a1d38592266b64030918f7634a65cb013d5490a868ab657a0b474dcb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for deeplake-4.0.3-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 412f846ff96b1d578a6654517000797d62c26a0d8240697cf731902a36d9a729
MD5 ab6f5bc4cf34a627a8bb0f0db66052f9
BLAKE2b-256 4c8e2ae76bd5a599d2b01098dd1a5188eeb80eead039ab1111a3bb10a8bc7758

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for deeplake-4.0.3-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 4ebc8d20d911a823f46c6e2790da81fedd1cc2e65bb7af15df5150ec12572d9d
MD5 e18d87771be047e28d6395181416a4e6
BLAKE2b-256 b4b12a0fb54f259ae8add0a8d869c892ca443852f124f29fba8457eb4096da80

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for deeplake-4.0.3-cp310-cp310-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0a70e0d1e5a7f2e3f4cf1550b1095b43da3ee71160ad195a90cd768ff9a6a9cb
MD5 c7601795284659eccad23583fa1a913b
BLAKE2b-256 aa5cde522ec7158654e24307b2375b287743fde9907cce35c11ff5f506a7842c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for deeplake-4.0.3-cp310-cp310-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 859deeded9a3939ce1870539d546626a32c71d1e51101549c4e7617fb929bdfe
MD5 e7ebe198f157d235cdbbd0486d43606b
BLAKE2b-256 9f6d5bfa63891251571492cda83e72936f1d05c6dc2f90ec5212ff6e13aba26d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for deeplake-4.0.3-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2ad639fc3d4be98bb980a3a39be3bd45ce9a4008b364b2a938bb9c0fe29697d5
MD5 80be767fb8f8f86bfe51a82de4ba7aed
BLAKE2b-256 547522f12166ce0cb1d590db49c142f47d37dc7add2b573b5bd99ddc07945630

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for deeplake-4.0.3-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 734320fe55268c0ec9849d730676869a4f3db1846e028dbf928e2cefee07d23f
MD5 cf33aeb552a469b1356217d4946e2c07
BLAKE2b-256 4fd3759ffd021394473328dd3db4f1423932c3be2aa172d36b79f04dff6e375f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for deeplake-4.0.3-cp39-cp39-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e944e57296b0842a3b4b5948cfd6fee13f9ab77b13d2992f13ebd52e2d95cf21
MD5 2ddcf6f45bbedc5cb193093eefe8284c
BLAKE2b-256 eec650656d36dc8dfdc489582f4ff928f65b86e0e44b698123ac10d2d179c23b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for deeplake-4.0.3-cp39-cp39-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b33f73aba80006837a9844ed1fbbc8718cadd9352cd6de04254d09e88d42d1b7
MD5 5f42084ad977c4ed2a5fe25d18278835
BLAKE2b-256 a0e1ef1b358ef25e23f7f06be7442227db9097963878ca63957b7f80e819f168

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for deeplake-4.0.3-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 be4890b0facd374069d6bffab62ef23c27241a275a1794dfe36c2d4d2d1cf2a8
MD5 616853a7fa41e5009d96aee6e65ffa7b
BLAKE2b-256 c49989555a8b5f5d6c492877b4a0640c371a20e17d487ac1f5b679fb1085c824

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for deeplake-4.0.3-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 176e8b835c449cc41b6519c0e664fffe1c37a15588e084067dc55168094bc3c1
MD5 e7f88a37b16572e85fc607748142f29e
BLAKE2b-256 d0e963102ce0674b131b55d7610c658ec1073b6bd1c36812031a49b3215fdd7f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for deeplake-4.0.3-cp38-cp38-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 45b6588f97c68dc5cce6692c1dbc2d88d74c3ed0907d11a69d431397172fe0ff
MD5 7bee5f4c42ac79cd8b900b397b59fbde
BLAKE2b-256 b0931dfd5d35175699352bda1a95c6ddf3f2f65556aeee1cf4c6ed1fe626a8e7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for deeplake-4.0.3-cp38-cp38-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 cce790051dfa3471f7756da327f0691c4a73bd4d247a019184638206c556668d
MD5 349d0a9e26d0649da26beef20a310edd
BLAKE2b-256 d027b040c87f8e7a938129fa5f2cbe14b42acee70daadf0316135f9160afd3ef

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for deeplake-4.0.3-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 490fd66cd434b658880f39c197d07186bdb94620ed4065b79030ba0b71753ddc
MD5 b2d6b53a7f8d1c67a0194bc6a821d286
BLAKE2b-256 5fdf188f6a27ad4289d83f3b366956114b1ca091cddaf0216e5d2a1b5f015dd7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for deeplake-4.0.3-cp38-cp38-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 1521710fee9128940d8317997d238221058efc73c414bcfd8ae0370042c20947
MD5 79b72b34cde370f118fd23deaf0c6f05
BLAKE2b-256 cdf921867646ff325431101ac7bfa40a0054fa20f37ebaef2a283227151ec4c4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for deeplake-4.0.3-cp37-cp37m-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8f54068635ffeae53eff50fc449eb9388fdab58ed9f3b24c3758327aa73153a8
MD5 7c51495dbb342b04d1751f02507b7cf2
BLAKE2b-256 52205e3d10676d6425c243648291bbca151979dd41d622e1179bed5d402afac4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for deeplake-4.0.3-cp37-cp37m-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2999bce70ff447980db9b14e99aee13abde8fd5f5be85d255ef65aa4cc64dd36
MD5 9cc6458ea2c2cee9b628906b7ffa4e93
BLAKE2b-256 9e9e86c705ab8f4b3485ab1dd0d966c19cfb886721e9b2597c7317406fe744e2

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