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

Uploaded CPython 3.13

deeplake-4.5.10-cp313-cp313-manylinux2014_aarch64.whl (37.0 MB view details)

Uploaded CPython 3.13

deeplake-4.5.10-cp313-cp313-macosx_11_0_arm64.whl (31.7 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

deeplake-4.5.10-cp313-cp313-macosx_10_12_x86_64.whl (33.1 MB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

deeplake-4.5.10-cp312-cp312-manylinux2014_x86_64.whl (39.0 MB view details)

Uploaded CPython 3.12

deeplake-4.5.10-cp312-cp312-manylinux2014_aarch64.whl (37.0 MB view details)

Uploaded CPython 3.12

deeplake-4.5.10-cp312-cp312-macosx_11_0_arm64.whl (31.7 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

deeplake-4.5.10-cp312-cp312-macosx_10_12_x86_64.whl (33.1 MB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

deeplake-4.5.10-cp311-cp311-manylinux2014_x86_64.whl (39.0 MB view details)

Uploaded CPython 3.11

deeplake-4.5.10-cp311-cp311-manylinux2014_aarch64.whl (37.0 MB view details)

Uploaded CPython 3.11

deeplake-4.5.10-cp311-cp311-macosx_11_0_arm64.whl (31.7 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

deeplake-4.5.10-cp311-cp311-macosx_10_12_x86_64.whl (33.1 MB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

deeplake-4.5.10-cp310-cp310-manylinux2014_x86_64.whl (39.0 MB view details)

Uploaded CPython 3.10

deeplake-4.5.10-cp310-cp310-manylinux2014_aarch64.whl (37.0 MB view details)

Uploaded CPython 3.10

deeplake-4.5.10-cp310-cp310-macosx_11_0_arm64.whl (31.7 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

deeplake-4.5.10-cp310-cp310-macosx_10_12_x86_64.whl (33.1 MB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

deeplake-4.5.10-cp39-cp39-manylinux2014_x86_64.whl (39.0 MB view details)

Uploaded CPython 3.9

deeplake-4.5.10-cp39-cp39-manylinux2014_aarch64.whl (37.0 MB view details)

Uploaded CPython 3.9

deeplake-4.5.10-cp39-cp39-macosx_11_0_arm64.whl (31.7 MB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

deeplake-4.5.10-cp39-cp39-macosx_10_12_x86_64.whl (33.1 MB view details)

Uploaded CPython 3.9macOS 10.12+ x86-64

File details

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

File metadata

File hashes

Hashes for deeplake-4.5.10-cp313-cp313-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d92e1709464f6a5e6c8a6dc51d58df992024fbabd6be2ac2f6703a37f0759b4b
MD5 1ee0f809231b5df4d02cad29a0d32c92
BLAKE2b-256 1eb0e4163dced1ebc1bcbd4a04e27575bd66d7287c63cb9312192aa44fc9e25d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for deeplake-4.5.10-cp313-cp313-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7e0b80e03f32d2689dbb069f166743d57570779a2bff0059785358e31a82a373
MD5 e8cc221e9114b3a385b85bd4a467a770
BLAKE2b-256 2be1fdfdcdd4c33b77f461a70153829551b09df79188b9c6457e967bca35b201

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for deeplake-4.5.10-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ae91db90e6f424f557edd4b23a23e6450105dfe1e63647a581e72b08350f46b1
MD5 b5737e94671239891e220520bf3c7d6d
BLAKE2b-256 2ca7c06b40bcc848d67c8662b1e8ec029f33da23f846087a61cb629b78316454

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for deeplake-4.5.10-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 a37fa05ae4beb4b64a945def7da98fcff8ce754e4c07762affd3a9a853c0c5b8
MD5 21852672ca33d9404ca5833273f75eac
BLAKE2b-256 d11fc3145db76e20777bb934e8cc6da026c626d0ea910d464f7f04bd2d16847f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for deeplake-4.5.10-cp312-cp312-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9486b45d78f44d11c6486be95af5698cc9e34a4649fcfa70f0f28436dfa488a0
MD5 cc98b9af9cbe8517cf3a9379878ac7f1
BLAKE2b-256 d440bd8368b50c7665a047291d61235cd779e477b2b421e60163ce2f5ab56e46

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for deeplake-4.5.10-cp312-cp312-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c8880db6cfc6bbb48d44a07a384329f46785041b38e25aaa18b8353be1759fdd
MD5 2d1333896730a1c354d9c237a4d797fb
BLAKE2b-256 392ed2a5c086fe7e4c97f537fcc0dbc772826a1d8f104c09b6d520998a6acfb6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for deeplake-4.5.10-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 093fbcad569df29285b416348e49455f30638f5ee8ddd4f30ecba58682deee0f
MD5 9016b850609c37ccd08b1603d9373534
BLAKE2b-256 3056bb858946a75c464fb0b522da660340f22acd66a997f5ac4c63521c368b64

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for deeplake-4.5.10-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 7a7237ccd063d59cb5bf83316741bfb7a4c55690fd5f3bb981353df0010d5c89
MD5 295eb70e80f3e7735c6c065c67c06ebd
BLAKE2b-256 4a6c4f1fcac89e3aea93c736434c5b39eac1bcb3835cf19f904c163db279949c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for deeplake-4.5.10-cp311-cp311-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2a7dcf9a7d48b279ea1effad2cd60e37c1445505ac0bc31967d7fac3143cd285
MD5 2973270f99bba4d97fce6f1822281e23
BLAKE2b-256 f464d98bc5f4ee97ac69962ad73cd6975e66719343b048a810333dcc8e66aca0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for deeplake-4.5.10-cp311-cp311-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 aaadc8a53ab5fc2108bd0bf0fbbc773150fe2bc28c8a70d23ead9d68cd9670c0
MD5 f57d64df84b6b1407cad98049e22ef53
BLAKE2b-256 987622f7990950b6a70aa4e7ef91729e9133fe1805c5bf678f3e11476a42820d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for deeplake-4.5.10-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 748d434993723baa7f43eae652d3dda65a0160829bda9c475ef1569831c810c2
MD5 af8323535b4b91e11d94f50a55137562
BLAKE2b-256 bc8beb8f52e3c39b71a62e72d9f25a0688fbeb556f9806208668787e452c8d7f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for deeplake-4.5.10-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 7d44065d518ead37065afdf3fc9ec827280410640960f74e356be8a1432db1eb
MD5 30a442e87f3ed577685aef21d8d9a243
BLAKE2b-256 d01731946a75247f2b371d8dae1c5c4304b80aa559c503944839d84604ccc2fa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for deeplake-4.5.10-cp310-cp310-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4b48beaf17274fc66861c457bc8889422f39337a5dcf274623d67ed0f9369bd1
MD5 394029768dea2a0e620b873ce28e6b90
BLAKE2b-256 f3775ed844829642d3e6efd874b73380b2c62077c9e7763f4d34bed15a39e597

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for deeplake-4.5.10-cp310-cp310-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 30314fed00d3e4179f9b529ece41dc748a73a3ecae6d8cc8d4c0e348dab52cb8
MD5 6c03cd92d4904a3d71414c5b8278b63f
BLAKE2b-256 ce793dbcd107b7d058fffd71cd08a261ad0a4b1a202b83bca62a75355c84e6bf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for deeplake-4.5.10-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c54c792bc8530850d8d6465be580b99b3d5b9e396bdbf420af8d9be87cbb7882
MD5 67c5208d41ede4c0154d48589b9b490c
BLAKE2b-256 2f4772fd6d1c5c15fa59e4c66397ddde06926540ebdc92700fcf4687d5d6fa76

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for deeplake-4.5.10-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 4f41690ae1b2564a7de303acecddbdacc3b18f47c414070dc1a73fa23ca430ee
MD5 9d6de9973f1abb4cbf632e8c8ee7f008
BLAKE2b-256 55c082350a9c334233227cdfffca8fa033706bfdeea92adedcf1382068420269

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for deeplake-4.5.10-cp39-cp39-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 82024675a958bbbc90754cf5a96fd03d9dd4245638b6e087ea18bf522c077573
MD5 326908e28f34786cf9766c479e82aef0
BLAKE2b-256 24b44241b3a690687df491c7c93f17a0f7092ba0512859b33c98951889fc01e6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for deeplake-4.5.10-cp39-cp39-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ee273e4ddac1aa77e1aad5c854b6221a6fb5d7060281a4a857147f261ce9a9f8
MD5 3eae28be51c20d1dc2b808cb3053486c
BLAKE2b-256 896e979d4d9434e6306a12894d6c257b202cadbd3a4db29b6559fb529e46bfe7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for deeplake-4.5.10-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7e91796fa6f7abdbe8832940b94dde378322b79052d3a79332722dcd63b5ba92
MD5 5ecc7350abd4e669b437c1acc45a3d38
BLAKE2b-256 b869a874778a60a60de91736d66189d16eafe8b8ddedf40e0e897b3cbf1b9354

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for deeplake-4.5.10-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 e0906eb745b781f3299f801a3fb95a5da6addc22cd0164f7df55c8c6650de342
MD5 35d569b52157ba935c7a49c722b89067
BLAKE2b-256 4a7b722d9ed4ae9430c174f69818e68cd08b49dd7c05b0f2c497a2a79f033bd9

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