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

deeplake-4.2.14-cp313-cp313-manylinux2014_x86_64.whl (32.4 MB view details)

Uploaded CPython 3.13

deeplake-4.2.14-cp313-cp313-manylinux2014_aarch64.whl (31.4 MB view details)

Uploaded CPython 3.13

deeplake-4.2.14-cp313-cp313-macosx_11_0_arm64.whl (29.0 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

deeplake-4.2.14-cp313-cp313-macosx_10_12_x86_64.whl (29.7 MB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

deeplake-4.2.14-cp312-cp312-manylinux2014_x86_64.whl (32.4 MB view details)

Uploaded CPython 3.12

deeplake-4.2.14-cp312-cp312-manylinux2014_aarch64.whl (31.4 MB view details)

Uploaded CPython 3.12

deeplake-4.2.14-cp312-cp312-macosx_11_0_arm64.whl (29.0 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

deeplake-4.2.14-cp312-cp312-macosx_10_12_x86_64.whl (29.7 MB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

deeplake-4.2.14-cp311-cp311-manylinux2014_x86_64.whl (32.4 MB view details)

Uploaded CPython 3.11

deeplake-4.2.14-cp311-cp311-manylinux2014_aarch64.whl (31.4 MB view details)

Uploaded CPython 3.11

deeplake-4.2.14-cp311-cp311-macosx_11_0_arm64.whl (29.0 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

deeplake-4.2.14-cp311-cp311-macosx_10_12_x86_64.whl (29.6 MB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

deeplake-4.2.14-cp310-cp310-manylinux2014_x86_64.whl (32.4 MB view details)

Uploaded CPython 3.10

deeplake-4.2.14-cp310-cp310-manylinux2014_aarch64.whl (31.4 MB view details)

Uploaded CPython 3.10

deeplake-4.2.14-cp310-cp310-macosx_11_0_arm64.whl (29.0 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

deeplake-4.2.14-cp310-cp310-macosx_10_12_x86_64.whl (29.6 MB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

deeplake-4.2.14-cp39-cp39-manylinux2014_x86_64.whl (32.4 MB view details)

Uploaded CPython 3.9

deeplake-4.2.14-cp39-cp39-manylinux2014_aarch64.whl (31.4 MB view details)

Uploaded CPython 3.9

deeplake-4.2.14-cp39-cp39-macosx_11_0_arm64.whl (29.0 MB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

deeplake-4.2.14-cp39-cp39-macosx_10_12_x86_64.whl (29.6 MB view details)

Uploaded CPython 3.9macOS 10.12+ x86-64

File details

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

File metadata

File hashes

Hashes for deeplake-4.2.14-cp313-cp313-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3684b7ed62bf072bcfae3f28f7ec2f7bccbb92762674a0415270c75077cdb8f7
MD5 5d8bf8836c0ac7ddc10a2fda5b5b02d1
BLAKE2b-256 b66b60e591585ad86350a6c32d1e94ecdd2203c65fe6601f190c87344146ea42

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for deeplake-4.2.14-cp313-cp313-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ba2ae603dd5ea6a0690bd31fe093a1ca44c9045dfb7a9ba2bbaa01c737249b41
MD5 f9b92a851464b766597fe58e0691f2bb
BLAKE2b-256 f43fdec601558b8325e239fad7341e209bb5d6e4e7c9eb70d918f1e9fb8b8507

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for deeplake-4.2.14-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8001f78f4d43fd2d4f2501d992aac5a60910341f5750c372d67d1e633288f4e4
MD5 f31eb992d4e9673677537e9db815dd51
BLAKE2b-256 e90fa7556de99ba18b1d9bbb4e39e93d18f963af53f2b99b6e724327b1105a70

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for deeplake-4.2.14-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 f3b125c43511d14a3cf8476455ef20fdc7cd7678ccf5630638c2e253d69c43b8
MD5 a3c51871cb03a3b8c433b12a595f8901
BLAKE2b-256 4ea304d7c6efc7f8017cbc742ded1eb8a1ad409d0f113810a4feb51784482d22

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for deeplake-4.2.14-cp312-cp312-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 91ec4772ed000a0f76a11fae782dedde1908911b4d5317af8d37c9ac8cfa9b5f
MD5 6819aa87ce08e4517583e8f8e3ae13e0
BLAKE2b-256 cf11b309ab40265673188ff7bf64660ba63376d26e618ee93836ec92da0235fb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for deeplake-4.2.14-cp312-cp312-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 bea882ffdfd51b96b0cce13f9e74b1c5bc2fe7a207221f5d45b26604f2788aed
MD5 3169d999f010588f3bc8bf95abcd0512
BLAKE2b-256 967e3beeb92cfd27d310a6e9b8c7704a82348d29f831cf7405cea46a28afcb05

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for deeplake-4.2.14-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 13fd1cb8dd203386b59c1bde13611733daca4fe38a014811c070767df22e1f7b
MD5 bde2a7e4da53a84a4632bd0ec16044ae
BLAKE2b-256 00183afbb70d33152a13baeda31ed00d51be4c48fc34d115b33ae757a6957445

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for deeplake-4.2.14-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 d450c297f5d5e40956dfd0c6d3ff613c715f3c7c4a830daaeda939899b5a01cf
MD5 e7aee42a77e7eda9b5e844cd358200a3
BLAKE2b-256 9ec0a127ef8d87650c3d275d8aa9340a4eceb5d0c6e64994b538d30d4b649897

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for deeplake-4.2.14-cp311-cp311-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f3d153684cda7d406de1257fa6af2e30241b6ee94c08e7a8cd0b4714ce76ec9a
MD5 d17f808b469bb279b7f39fea074ab8e1
BLAKE2b-256 413fd7117de15b640a35e912277583b2d142d8b85a1d721f31d627772698ec29

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for deeplake-4.2.14-cp311-cp311-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d6867b6e21d3130d396b5bcc164dbd16f9dae657bee9935a07115696b6f9ff3a
MD5 9499f9a2d8a71948cd2d890823f2c46a
BLAKE2b-256 457f4a17eb863b4aa0522bb031c6b15bbdfb164da1fabe2aa49da9ad972cd3fe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for deeplake-4.2.14-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6b4af747c9ca59d1122445c32d4fdca1939d6c0ddcd164ae5c33704ff8464255
MD5 67419182534b2a773b894709dd08755e
BLAKE2b-256 692aa9adecfe0b72498e2a129f6e9586fd80b52eb13365225645d534c8153679

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for deeplake-4.2.14-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 6d10bc2431ef91e10791c55aa9dc913cc6d1cdc5ce91781c3b40a0de62c2b044
MD5 b616318c7d6f6e512c149e7e0679121a
BLAKE2b-256 c00372f7fa3c56065d173b1c7eafa5d89a6e6b66f032881a7282e48c940c8d12

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for deeplake-4.2.14-cp310-cp310-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4f5e26b2e4e9447268c55e1a769047bfae69db2ab09286f340bacac96e1fe767
MD5 632e3692a27c96879393e15030852d64
BLAKE2b-256 9007d225dfd82b6d9dcca901cd13fbaf96b0c186adfc4c83c7b567779f0a2063

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for deeplake-4.2.14-cp310-cp310-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 59443c6a1e5c11585d3fc670a61c2d960e17f8dfe3ea4864ef86705c224b11e2
MD5 b9fbb4f0a8d0dc8aaa850570abcca24c
BLAKE2b-256 aa6e07d910ccd1183cdd7feec7469220dd24219222f90587d8d15cfd3d8ecebe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for deeplake-4.2.14-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 952d9da0bbcb965337d3aafbce95a91d85a121a80f7f40c53a73c7838b73c38e
MD5 ac5c39ed5ba84fea76704bbe65097605
BLAKE2b-256 8bda2a712a29710f1f734cdc1283b27cd631d9668709718dddb7cdd86aeb83f1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for deeplake-4.2.14-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 60b1f78c9079844fddef7bedb52803472fd9d4df58cb2e58fe42b151480212f0
MD5 7ab41756623b1edc561f730ba4046332
BLAKE2b-256 53dbe290e60a17c9e592fd3c27bc05c57650458c0fd550f88373fb2e5290e187

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for deeplake-4.2.14-cp39-cp39-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c112eed8d3def80e6bdbd3850913db6ff8242a9b3c588f1c736978abe04e6f31
MD5 1c236c45e4d401ec2d291f262772e614
BLAKE2b-256 bf25f88445f6a4d33a31f068621c1e0e76d436cad6b403f0a72bcfff8051dd41

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for deeplake-4.2.14-cp39-cp39-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8f19320a058302fea4139adf063ac9e814b9697e51532321d1374e628034efdd
MD5 e131279b12ccc1c4ee014d7ae9e33939
BLAKE2b-256 fbef0f58c3d17ac6b952e297d063aa90247626969d5388d7a6c60451e3dd000e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for deeplake-4.2.14-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ee3616c8b53c7bbd01ab937cdf1e96241360fdb537fac494fe495f2505b66804
MD5 75fcc29c412242e42db1122aaf2ff18f
BLAKE2b-256 997a5ba5f38786654c54259dda44680e52b09fa9515f79c22bdb56b526b09af8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for deeplake-4.2.14-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 8850c63c11bde865e25ef995ba0ca8a8afed2daff623c389e0a24c1477f8579e
MD5 a28c6f9bd9e92ee2f49622198d5c2e62
BLAKE2b-256 0e0f3fc954e18d7fb2d8327fcffa5ffcc17ed99d82261399f77ebce95010e43f

See more details on using hashes here.

Supported by

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