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!

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

If you're not sure about the file name format, learn more about wheel file names.

deeplake-4.6.1-cp313-cp313-manylinux2014_x86_64.whl (39.4 MB view details)

Uploaded CPython 3.13

deeplake-4.6.1-cp313-cp313-manylinux2014_aarch64.whl (37.3 MB view details)

Uploaded CPython 3.13

deeplake-4.6.1-cp313-cp313-macosx_11_0_arm64.whl (32.2 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

deeplake-4.6.1-cp313-cp313-macosx_10_12_x86_64.whl (33.7 MB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

deeplake-4.6.1-cp312-cp312-manylinux2014_x86_64.whl (39.4 MB view details)

Uploaded CPython 3.12

deeplake-4.6.1-cp312-cp312-manylinux2014_aarch64.whl (37.3 MB view details)

Uploaded CPython 3.12

deeplake-4.6.1-cp312-cp312-macosx_11_0_arm64.whl (32.2 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

deeplake-4.6.1-cp312-cp312-macosx_10_12_x86_64.whl (33.7 MB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

deeplake-4.6.1-cp311-cp311-manylinux2014_x86_64.whl (39.4 MB view details)

Uploaded CPython 3.11

deeplake-4.6.1-cp311-cp311-manylinux2014_aarch64.whl (37.4 MB view details)

Uploaded CPython 3.11

deeplake-4.6.1-cp311-cp311-macosx_11_0_arm64.whl (32.2 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

deeplake-4.6.1-cp311-cp311-macosx_10_12_x86_64.whl (33.7 MB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

deeplake-4.6.1-cp310-cp310-manylinux2014_x86_64.whl (39.4 MB view details)

Uploaded CPython 3.10

deeplake-4.6.1-cp310-cp310-manylinux2014_aarch64.whl (37.4 MB view details)

Uploaded CPython 3.10

deeplake-4.6.1-cp310-cp310-macosx_11_0_arm64.whl (32.2 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

deeplake-4.6.1-cp310-cp310-macosx_10_12_x86_64.whl (33.7 MB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

deeplake-4.6.1-cp39-cp39-manylinux2014_x86_64.whl (39.4 MB view details)

Uploaded CPython 3.9

deeplake-4.6.1-cp39-cp39-manylinux2014_aarch64.whl (37.4 MB view details)

Uploaded CPython 3.9

deeplake-4.6.1-cp39-cp39-macosx_11_0_arm64.whl (32.2 MB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

deeplake-4.6.1-cp39-cp39-macosx_10_12_x86_64.whl (33.7 MB view details)

Uploaded CPython 3.9macOS 10.12+ x86-64

File details

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

File metadata

File hashes

Hashes for deeplake-4.6.1-cp313-cp313-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ab09aeabb3f81ce02ec83b4797321ee63056a85b04a39d4b71e0959e4e699e88
MD5 38da359a170f62e55ea2062a32e794ce
BLAKE2b-256 8d3a7bc612bb35a718c757ee043f7a8650387738a6236540000e1b45037d9857

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for deeplake-4.6.1-cp313-cp313-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f7ac75231dc383cc9f7322959c96433529ff94bcf6873ab78452935c0b69a920
MD5 555650e436c87f8e34b169dd9390d99b
BLAKE2b-256 cb55d41f3fabb34d7ec9529c329d9938a0eb9c06cc038b241026233f270498b1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for deeplake-4.6.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 41d829323db8adbf56ba4b260cd4c083d89185b4c3951391c13ff96ba5d61156
MD5 4cccaf3d4a091e06e10bb05d1e96a703
BLAKE2b-256 ce72aa782683470981e08a50cfee994e793afcf53c56516f784c7a8a6e3db9f5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for deeplake-4.6.1-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 891405408ef1e330aab45ba8b8c2e8c5262db3a535e15d0382c5533234de65e6
MD5 d925e42f5156765dcf82505d5779550e
BLAKE2b-256 45d4981f4d91aea2dc913aded872a7bd111a267c076d30e3c2059970a41969b9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for deeplake-4.6.1-cp312-cp312-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2b1d5eb3c1048a301cd76f12b993de79a2b2eea6ae1c9f1aec018ee5de73f2a2
MD5 c8437053d13be46f1022ff1ef11d6070
BLAKE2b-256 301aab8a9607029bcedb19d929b76586af2af4f86f380a36d8bf6d67f8f86561

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for deeplake-4.6.1-cp312-cp312-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 25ed48cc96ede8bbc0272d4236a9f393b41eb806a789740498c583d9dff9c01d
MD5 6e6fd4d46fee9d2aa38c5251e4a48acb
BLAKE2b-256 6415795f909afd992fa321ceaedad2b7a10a4a51dec38b649e8ffa84baecfd0a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for deeplake-4.6.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b266c048a485e635f204647a21123e1eef5fd1847c83f66025ae9dfc788840f6
MD5 83282f438e8ccf24980889f932253833
BLAKE2b-256 ca330aff7519b6f6932e51a7a111fce40e5e03b52b2e654dca1785f2049a1200

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for deeplake-4.6.1-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 63e6299b98437e3951fdb188e2573e28217988e49d95b3108a1ece49541e01e4
MD5 4a1aea92d0e0d4f9adc8e63d12a1a88a
BLAKE2b-256 5f9c897b471c73cbc951d24f8683fabbf91f3f347bee21f5cff8883da9ce1456

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for deeplake-4.6.1-cp311-cp311-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a3ab9f79f1660a1d680309d4b2a6ca457bbe241888bcb0d68eb2ee6230401837
MD5 c662feda8c7699c60f895c63d02720b5
BLAKE2b-256 86ca9f13b0b4f9a94cd1659682e3292122cc71ffdfc43fcef87e33efa3785f86

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for deeplake-4.6.1-cp311-cp311-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d0b03beb0f66fddb631e8ae547e746e679e0b8c9f57d4d3c18851cfe8a541d0f
MD5 69f640ef54ac49d9c93cb32f607be0ba
BLAKE2b-256 36875fb0519f8245b3cc57965e3a9a630992622a2e4a97d3ea43ab377f11ce90

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for deeplake-4.6.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ef4351b59fdcbbda6575a1f26f623b62e7da58682095738fe9a96b89cd349d2b
MD5 86c797f720ed150eec5e5d81b3a9cb80
BLAKE2b-256 83c1af1fa6a2ea1427ef46aa3e8dbfd66feaf4986f0fd61f51a768eb1479a5ea

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for deeplake-4.6.1-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 8af967f7c8ab97c594d03e0464ab86b3ad9b7aa23a1cb8b67e5d3a5a6892370e
MD5 8d7a4ed35d6a77b15d78641024d18ac5
BLAKE2b-256 c5aa097fc2a51a40d70d2f2d2a9a826b16aaf65e61607fdc9b1339110216eab2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for deeplake-4.6.1-cp310-cp310-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3b3a4ab94c51a364fa989dba913068d42c0418cb252ea12da1797af186fdae9d
MD5 f48172e364d98e57b7469aa0b0ff6830
BLAKE2b-256 298df27a4cf654bf6f13f1d212963d0ef1a7ea810700a6bd274ec2b0d28f5499

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for deeplake-4.6.1-cp310-cp310-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a77e8229572ba060c0205279988681dd6690a3dbbe6b849b225376ba583be6ae
MD5 22047210c4fd9e9fc89ab19637a22af1
BLAKE2b-256 6e84a5066a43608810c3e348f82a43c56b08c90cfbdd36181290bcbb6c246057

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for deeplake-4.6.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ec440180da2fed3647170c3e52f18b519fc2d927241f06cc0d57dd4ee9ecb164
MD5 bb7d9c582a68415cd7327bb66ac217bc
BLAKE2b-256 08686a306c17bf600341c8ba36bc15e1598861f5f910936c2371c4b354a0d16f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for deeplake-4.6.1-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 39ddf8a6474fcd6a65d3f3091209fad9bc06113ef9538b3be77bed6120ae5c6e
MD5 c4544e1a8727937ebad0f0f7ef77c5f3
BLAKE2b-256 1d2f339d512dd3dbae5973992cec1510d5809533473dc4733f671fc8a751ce05

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for deeplake-4.6.1-cp39-cp39-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8c995ecc39de88bc4437d880a6620a6a14ff83931701f2408b3380fd7a3a2573
MD5 d1faea6a134ca11fefb75645d5452791
BLAKE2b-256 f4ec56f7507431c0c870da0fc0f92d2235edef0d8817e43c3446b06243836d39

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for deeplake-4.6.1-cp39-cp39-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 521721b4a75096e9a1e4632ddc4eee0156d13d5236a3b7978904a510951f078c
MD5 f367933e8b42a7dbddf5d5163fa092bb
BLAKE2b-256 b5fff19da5f7a9b117c25846a04d2af92383561d53b529afaf52a5425af7765a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for deeplake-4.6.1-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7d10f43820b9d193aaba28ccfb45cfc47e12a4183afa128dc3811895297ca389
MD5 5c9d9cdf54d9c2619537c8857150c6eb
BLAKE2b-256 1e171bb973f14af59b1fb0a472cffbbb21ccc8da7257626c8b9982773cecacc0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for deeplake-4.6.1-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 22e9e6b4aaa5865c477aed7621b29c44a36845a0e627808fe2d5e721304bc031
MD5 1ed12a3ff22d4b6d832cdded097d6188
BLAKE2b-256 759d62acbde11c3e1ebeebd856aa519b3bd8795965308a6af59935b60f405411

See more details on using hashes here.

Supported by

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