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

Uploaded CPython 3.13

deeplake-4.5.8-cp313-cp313-manylinux2014_aarch64.whl (36.8 MB view details)

Uploaded CPython 3.13

deeplake-4.5.8-cp313-cp313-macosx_11_0_arm64.whl (31.5 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

deeplake-4.5.8-cp313-cp313-macosx_10_12_x86_64.whl (32.9 MB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

deeplake-4.5.8-cp312-cp312-manylinux2014_x86_64.whl (38.7 MB view details)

Uploaded CPython 3.12

deeplake-4.5.8-cp312-cp312-manylinux2014_aarch64.whl (36.8 MB view details)

Uploaded CPython 3.12

deeplake-4.5.8-cp312-cp312-macosx_11_0_arm64.whl (31.5 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

deeplake-4.5.8-cp312-cp312-macosx_10_12_x86_64.whl (32.9 MB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

deeplake-4.5.8-cp311-cp311-manylinux2014_x86_64.whl (38.8 MB view details)

Uploaded CPython 3.11

deeplake-4.5.8-cp311-cp311-manylinux2014_aarch64.whl (36.8 MB view details)

Uploaded CPython 3.11

deeplake-4.5.8-cp311-cp311-macosx_11_0_arm64.whl (31.5 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

deeplake-4.5.8-cp311-cp311-macosx_10_12_x86_64.whl (32.9 MB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

deeplake-4.5.8-cp310-cp310-manylinux2014_x86_64.whl (38.7 MB view details)

Uploaded CPython 3.10

deeplake-4.5.8-cp310-cp310-manylinux2014_aarch64.whl (36.8 MB view details)

Uploaded CPython 3.10

deeplake-4.5.8-cp310-cp310-macosx_11_0_arm64.whl (31.5 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

deeplake-4.5.8-cp310-cp310-macosx_10_12_x86_64.whl (32.9 MB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

deeplake-4.5.8-cp39-cp39-manylinux2014_x86_64.whl (38.7 MB view details)

Uploaded CPython 3.9

deeplake-4.5.8-cp39-cp39-manylinux2014_aarch64.whl (36.8 MB view details)

Uploaded CPython 3.9

deeplake-4.5.8-cp39-cp39-macosx_11_0_arm64.whl (31.5 MB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

deeplake-4.5.8-cp39-cp39-macosx_10_12_x86_64.whl (32.9 MB view details)

Uploaded CPython 3.9macOS 10.12+ x86-64

File details

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

File metadata

File hashes

Hashes for deeplake-4.5.8-cp313-cp313-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ad3737d5de933cb660a6d8648e5a8e177024b5a06c4af27e8e07d0d22249882a
MD5 466e586268bb43b673d707b3717cd70c
BLAKE2b-256 cdf78bbdb2baf5cef2ae465aa7f415d891d686bd59feebfad4215e7bd84448ed

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for deeplake-4.5.8-cp313-cp313-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f12cd1f6aa90334ac55dee3bfa15768357d721545eb23998afb96c6bd6606104
MD5 c081adeb0840f29a8bae2bad978be9b0
BLAKE2b-256 c5e114288974794615af3c553461dace975a186141371e59327272ce3016bfde

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for deeplake-4.5.8-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3d46464761103f195d1d0c61e5b4004c03b5d21a08f0a0f4201786b14842c292
MD5 b03c72e4cf0e6f5d15d928ac1e15c371
BLAKE2b-256 3f196d51855dedd7d1622c117a8432f908d19e23e8a49afa3c1a9898ccc6261d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for deeplake-4.5.8-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 24286a2c129f85dd7eb52ba8b96f3892cd6450c12533193d03575b7b59cdafdd
MD5 3c8d5e9f7dacf8119ec6e2ab519695b1
BLAKE2b-256 02548ed9be28265afd4f9825059913a185a39b6f5c4068355b5264c574bf9e61

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for deeplake-4.5.8-cp312-cp312-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 431157f8f2ab2b04fb1d5562b2f8c1b08fb16be64f22dbcc499e0a1f37ef14f4
MD5 90bb70ad3cc57251c3813660897b4a40
BLAKE2b-256 5d0d331ddc38d04ac2989cbc66b322599cfe2a11c3b1bb38b590c8226a9a701a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for deeplake-4.5.8-cp312-cp312-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 aaeef34132ccb36e950b6a64627eb16c6d33dd6af093a3fc3b0a12f6c52f9e27
MD5 42aade4ce91184b31ad7b66390272fd7
BLAKE2b-256 42b603b1d9b6dab1f3bbcf7f3f4fa5a527c6ca8c483c64a047e5c64c8114005b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for deeplake-4.5.8-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5d1c2db3f558f9c018933d428b2d9e74264d1b3ab8f6ae14c7d3ed345898a943
MD5 bc8c3697da72dc173aeaf6ab9f1d2ac7
BLAKE2b-256 f867eb94238bca979eb38562525a603b48930c0cf8075adf8c598f96d7ef0b50

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for deeplake-4.5.8-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 734f5d97054caac3eafd62949a2d5ad440384229193b93cb3333aa9fe77afa2d
MD5 6648dc4d79a78faed96caff5a64974b1
BLAKE2b-256 acaa18bcea869e62146c690974be5d21138c466b0a8ed0a86835ebc8b3fec0af

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for deeplake-4.5.8-cp311-cp311-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d4d2540bdc6bc1ceb20e908001acb3cf405d8853374582c69e7aec2dd29dabdf
MD5 257fed26932a46b87213ec37d5742854
BLAKE2b-256 0560abee303661d3dc56c412d111d1f2b9013a461a715a9d87745b823a276b61

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for deeplake-4.5.8-cp311-cp311-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 373edc63878256859f2c2438bc4c132bdf9554bc5b00c98a625300001e161b2d
MD5 93a9be14823ffde62da17d52a7ef4cf7
BLAKE2b-256 67940fd1a7b90a1aa4169910d6aa24cf5ddccce6609ee972a1542409fbffd016

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for deeplake-4.5.8-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 448fe29c37d5a7d81dba4ec4bd38058b046109da0f59e72beb8abdcced001dad
MD5 dab77a3fb026458d83f3ec4bd9f625ea
BLAKE2b-256 022105ba59f260a3d369316a94de08a36ac4faf2ee32f3e2c4013aca4b960201

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for deeplake-4.5.8-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 cea6719e30026d862161ad37e697e0869297718ca6ca51c4d88bf2da8520286b
MD5 f5eecfd1e4c5ba0cd628272370ce91a9
BLAKE2b-256 1b8ba0153ad73fe24aaf78f300e31e1a980f415094bca6e0faa93b6701d4e4c0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for deeplake-4.5.8-cp310-cp310-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 42ec05e34d4b12de1c6eb3cde2626d261a7d1b77737efe9b9368cb3f1c7ea696
MD5 f4c0b1277086ed160ee3159528f24098
BLAKE2b-256 f704484bd150d9622779090c9b37cd89adc9efacc28b1198ca476e6822e30f60

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for deeplake-4.5.8-cp310-cp310-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1c03c30cc8005c469b17eda37bce58fca3d4f954f4beca7617184a9887ed6bbb
MD5 ab1891b1191d30251f799944cbafc705
BLAKE2b-256 3cfcfffdc94887a44795a0f00a12fa93eca7248dc1ddc6d42bc8e9f4b9fb6e33

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for deeplake-4.5.8-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f92881d6af7616653e22dab7a91f485457024ff7db421906025f2c070eb3ba28
MD5 7735056efe4c69ad9018783c229f5b9c
BLAKE2b-256 e2afe788bcc05ad15a12bc264321c11c8a9a6f5baf901a34ce68802754cd5720

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for deeplake-4.5.8-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 2e6bce4570ca6c31b8976b2097596d1c686d705cfb6c47f7f2e30ccb0e4099e7
MD5 283f17959c2603942aa5550050c7035d
BLAKE2b-256 383cfe590c798042e5a0a3a7ec844ac15c8eb1e36489368740b7a0c2d1e19692

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for deeplake-4.5.8-cp39-cp39-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 13614d64e2b44ebaf20eb346f67fc9fce47849eadb4ab12c06357312fda18d10
MD5 a4a1795ea1a6900b6f307d867e9a30f5
BLAKE2b-256 a8cf7cc0b2d835fe98c343222fa69dcf9f8f3572cd4a5adadccf78c63f118de1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for deeplake-4.5.8-cp39-cp39-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 39c0e9f04ed0bd7ac48c36df316d761a6b2ba275330adc8d9eebb3f7ef09d0b1
MD5 d8f808de6f5778fc94202c179f0fa120
BLAKE2b-256 5f50a231d9da144ac15b2ca4d3985595060bf3b33bec928af279b65934d2a208

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for deeplake-4.5.8-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 24777eec9216d44ae43447cd282930013023e1992ca1cbc1524cebcc2eab5655
MD5 f5b7311c6a18da947ef2b2467b660004
BLAKE2b-256 e4eebb960ffbbe461c822ae05be77321b6f127550f23ca922390f065bbf4d9a8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for deeplake-4.5.8-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 a6d55668b05a29fe1b30565b52638d213b8b01cb5f3721eddea51cf2f7efad01
MD5 5b12f482767c7b01d340cf051f05dab7
BLAKE2b-256 09632959656a18c49f63666c6cf1e04f0afdb3c90733dd7f2f23dd17141cef55

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