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

Uploaded CPython 3.13

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

Uploaded CPython 3.13

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

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.12+ x86-64

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

Uploaded CPython 3.12

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

Uploaded CPython 3.12

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.12+ x86-64

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

Uploaded CPython 3.11

deeplake-4.6.0-cp311-cp311-manylinux2014_aarch64.whl (37.3 MB view details)

Uploaded CPython 3.11

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.12+ x86-64

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

Uploaded CPython 3.10

deeplake-4.6.0-cp310-cp310-manylinux2014_aarch64.whl (37.3 MB view details)

Uploaded CPython 3.10

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

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.10macOS 10.12+ x86-64

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

Uploaded CPython 3.9

deeplake-4.6.0-cp39-cp39-manylinux2014_aarch64.whl (37.3 MB view details)

Uploaded CPython 3.9

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

Uploaded CPython 3.9macOS 11.0+ ARM64

deeplake-4.6.0-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.0-cp313-cp313-manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for deeplake-4.6.0-cp313-cp313-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0f55e76374404e598bb2ed2ac124befd788219a150971525799f4b1c47400481
MD5 991e043c1bfeb3e7d130b617eb530d65
BLAKE2b-256 1b28ed8092e450a7f4d3e64b993a8bd24a8e5369d40449cf287ae45be90e10f3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for deeplake-4.6.0-cp313-cp313-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 dfa21e80cc870423fa534c25682518cc195c8ebaf5b7c002aea82d8db8674d16
MD5 18ef2cfb6c72af56c401b8b0780dfce1
BLAKE2b-256 6c007235c88267761de3ffaba25e5314743ef54ab7407ecb9537e6ef14f78a45

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for deeplake-4.6.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 93b34ac4fb096a183284a892d6535952ba7b94f00b096315630936cefaab728c
MD5 cfbf830fe838abf921c85dc209af28b9
BLAKE2b-256 4a83bed34e5f69f07651af38c1652f1665fab536200d9aca27db7f8459b1c4aa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for deeplake-4.6.0-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 f1fff00f9b2837dbe4dc33cf7da3fd171cca2963372061b7904a7683f4ca89e7
MD5 924cc347781472af361466b7696e5199
BLAKE2b-256 6a4b657e4a91f3ab5a1b08a9db10a530931854d4fd754c37c3a107777a856069

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for deeplake-4.6.0-cp312-cp312-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3f93149082376797953b72deb31efdf4c35b12754bbbf038c75b9a41d52a55c7
MD5 ceb5974a223d21190d382463573a57cd
BLAKE2b-256 21ae65e7544c38b02bbd22243b9aed4b023f23d2aee15b1fd21d29621ff4e596

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for deeplake-4.6.0-cp312-cp312-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 86bc38321fc0dc61c3684bda1ad2e6b255fa28a65787560cc7567d3a5e8b4f0f
MD5 04ac69f998f87f8f53d7b85ca7d856c8
BLAKE2b-256 e8a7229dfd60e43d42059264ca4473935d8afc537ee29bf9f18e9197bd0046db

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for deeplake-4.6.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0cc65dccd4c235ee8f102d51189874adc1cf3ab3a23738c91352caab2c6879e1
MD5 d8df46c05c215c1164122aebb637e008
BLAKE2b-256 f541db264122a8c139a3e5da05a9d8853e18cdd4eab5f84013fae2461e22426d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for deeplake-4.6.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 4b27dd8ebbb790e50fa858cf184cc341beeaa228682e882ae6bcf3d9010165ab
MD5 5788497f85272d95c68c6f074aca8907
BLAKE2b-256 a063d64f98229e7e407e035eafd898372f91a9bf43b39f0940cb09827bd2d98f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for deeplake-4.6.0-cp311-cp311-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5e6360daa5abdf37392df4dbb3d9f6d81217f59ba22ac6543254578afd3f5dcd
MD5 f2c33164e9729ce0a5bac02ac1f2cd82
BLAKE2b-256 91143fedfa12f21b97f1c92ac4bd158903a9947bfa891c26534f35a1aeba64d9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for deeplake-4.6.0-cp311-cp311-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 407923f82e71dac1f91b716001c19dc081391c674ac835ce3d9db14df96afb7d
MD5 9b165905cd82916522d78febe4e42cb2
BLAKE2b-256 a3b7126240a474dd05d006edd9d0e63af07427d1d21103644c0afdea05a55aa0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for deeplake-4.6.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b7696a3cb3eb41178a44b255f125586a30009ddd319957c745489bd318ab25ec
MD5 b942d0740e1b89f91aeb06ca33ad95ac
BLAKE2b-256 7b632ee8530770b1378bb237fe5be82a8a552d68128611ef423f71bcb9c2550c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for deeplake-4.6.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 2c4d07584620d7bf17b17dc181b77a776e25656cbeb319f9493b7567e4ee74ff
MD5 162e7ba0d6b333edd37d23a87e165575
BLAKE2b-256 b58de810cf4e8e2203114a4ec5a5c41d2ceffbd06faf50a06e405fe173d890b3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for deeplake-4.6.0-cp310-cp310-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6470960cf55f72c4ad8a955006b78cf2ec241c4827c8bff8169aaff4d0644740
MD5 42d4bc67f2b19389214168039fb61296
BLAKE2b-256 ebf9cb28290ac5df2d35fc8d2ddab3595d5a200f6f0fd19012709fceb4d65c7b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for deeplake-4.6.0-cp310-cp310-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8537377f0cb1151b5980385932c2e82c7bf0de43c197e4f7fd94efe5757f0b90
MD5 67e69bcd1d0c7cd83ac273be053be5b0
BLAKE2b-256 81c0db02e46b4363c128d7011c0022a3e1a076cfe96719fff3b2ae1253049f35

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for deeplake-4.6.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5cce81c6c55626bf7438c16ecdd8241521e49083cc897991478a50b40d0a43b2
MD5 d3b8dde12db0063e7f505f51a63e9869
BLAKE2b-256 53315799e5505024062a302f9f7c99042ee097f933ed04c85576ed7324522ec2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for deeplake-4.6.0-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 589b06fbbd0f3559b80106beccd722d34312260be8cf9db234b0b0c03820b82f
MD5 577356db9e012e86f7796197cebab412
BLAKE2b-256 465b5dbd2430e0ce5e901edc1bf30b216ff5cc33a8d37d36d61ef460768a3b53

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for deeplake-4.6.0-cp39-cp39-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 bc980a94d01907e5ba50aed0f12c4e777e88ccb58c08be47c8fb99b0367d2b2f
MD5 1393da3168f41b9046764c14ec71e5e3
BLAKE2b-256 fe5c4ca57f766110b4a21da8bc96edb7cf6b12186b670044161697a3bd489936

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for deeplake-4.6.0-cp39-cp39-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f6a2f8fd70b02d65423e163ef30ac28fba4d402e493ff6e316bdddf737dcedfb
MD5 a60021080e1a04bcc93555b78326825f
BLAKE2b-256 69be37198c48cf91bfcf22dd404130b0c8d5e2e6fcfbb1e57324eecfdb917063

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for deeplake-4.6.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9ab2f2cf6cd26d69ade4d37ab66c2fae39262b64e3de3919a8df094c43d128eb
MD5 916d5ccfa529fc15723dd624f241a637
BLAKE2b-256 c389866cab426ef23bc76049580d07585c3dc32015c621471726bbdb94c72897

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for deeplake-4.6.0-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 8f493947744bcae2ef1159040c14d97aec0c26e86c7e05dc8d4ab2c452be614d
MD5 5e39ac079abd450c10345fb127e674ef
BLAKE2b-256 361dc384d90547b98f957d992a754bf9b8d2fe624c9244ebabe7dbdb524ccee4

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