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

Uploaded CPython 3.13

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

Uploaded CPython 3.13

deeplake-4.5.9-cp313-cp313-macosx_11_0_arm64.whl (31.6 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

deeplake-4.5.9-cp313-cp313-macosx_10_12_x86_64.whl (33.0 MB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

deeplake-4.5.9-cp312-cp312-manylinux2014_x86_64.whl (38.8 MB view details)

Uploaded CPython 3.12

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

Uploaded CPython 3.12

deeplake-4.5.9-cp312-cp312-macosx_11_0_arm64.whl (31.6 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

deeplake-4.5.9-cp312-cp312-macosx_10_12_x86_64.whl (33.0 MB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

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

Uploaded CPython 3.11

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

Uploaded CPython 3.11

deeplake-4.5.9-cp311-cp311-macosx_11_0_arm64.whl (31.6 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.12+ x86-64

deeplake-4.5.9-cp310-cp310-manylinux2014_x86_64.whl (38.8 MB view details)

Uploaded CPython 3.10

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

Uploaded CPython 3.10

deeplake-4.5.9-cp310-cp310-macosx_11_0_arm64.whl (31.6 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.10macOS 10.12+ x86-64

deeplake-4.5.9-cp39-cp39-manylinux2014_x86_64.whl (38.8 MB view details)

Uploaded CPython 3.9

deeplake-4.5.9-cp39-cp39-manylinux2014_aarch64.whl (36.9 MB view details)

Uploaded CPython 3.9

deeplake-4.5.9-cp39-cp39-macosx_11_0_arm64.whl (31.6 MB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

deeplake-4.5.9-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.9-cp313-cp313-manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for deeplake-4.5.9-cp313-cp313-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f8c9b3ebc6b758c35806eee8f41f3679907a43dec4c2f0693d346fdeb0e0da3d
MD5 ee8e082ca1cfee43b78fd207bcc3ec2a
BLAKE2b-256 687bd51c426ceffbce5502396fdd9d361945197e8f0536c9802222a20a5d5674

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for deeplake-4.5.9-cp313-cp313-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f043e25ad17a0be7c3e1aba1a2bf1b3607f589aa6215ef02bb1bdad40db92869
MD5 563f3e18ad74eedc52b2a4ae7af1bc94
BLAKE2b-256 78b398c7b01861f83a785c468b4981edd6e15ef5f0733a739ef970e8d4a7ce65

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for deeplake-4.5.9-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 81e691b67290690fbbd6a4c7011ab59626db30f75c5f188c58c493fcefc1caab
MD5 143858c1294637a337ef468a4e1abc52
BLAKE2b-256 f4323750884da692ecc2c5c76c4cd223c4004a4e2357daa1281f2e2b6283a81d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for deeplake-4.5.9-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 1922afd53dc24db44df341392e6628974075898e76a8ac082dde6cc6205591ab
MD5 9a1973320a4ddcc4a409ce30cbd2555f
BLAKE2b-256 3c3c5a97c76dc88e414a682060363d5aa566848e0d580de17b94a4c1cb275650

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for deeplake-4.5.9-cp312-cp312-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 26ebe80317c9372075cf6fb2f0419f8c8eb344ff1d59940ba0a8c728e9c61e76
MD5 0ad02b87aa524a9385dcade04ce59372
BLAKE2b-256 86a2459e4cde6e7a98c35aeeb16392405da9fdfe9b12e303f2500319cc60c649

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for deeplake-4.5.9-cp312-cp312-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4326e83a16b47625694c5f5165b2a19e0106c243658bf3a014474ff5eb971dc1
MD5 c8fd2517b27da99189a793bf793ee9fa
BLAKE2b-256 c0be0cd3a0d4a875574041e99258a4af1363e76e104bf22c55b9d0ce557d5d22

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for deeplake-4.5.9-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2c17ecb72aeef501479b03b623e5532d441895fc3552853cb56ce80dece45842
MD5 9e9a1e89fb1d605cc522df511ab1e732
BLAKE2b-256 e466b6829a94399b5bb1d06ca4ce9108b16edb0b3ce9d0818d72665bcb2e369e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for deeplake-4.5.9-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 02f2dbc901d62490d66344bddbd6d5d1aea75853289fc35b6d69654bdb20df65
MD5 5051a718a4537357a93f16b884edf2c3
BLAKE2b-256 5656225ba816feff511353a859ff6b01b1edd75c8bfd23ef25c14dc6f22cfdfc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for deeplake-4.5.9-cp311-cp311-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d22b05aab74b6757f4100a1d42265d11b54a9800d14e5f40d50f77cfc2a27462
MD5 a22aa19cce8a3c62816dd775d03af9e2
BLAKE2b-256 135c891c39d1edd54f35d68f1f404de9b0bfe82c150fc69ce2ee04647a439893

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for deeplake-4.5.9-cp311-cp311-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 28c9d2e989d622d46a6971436b7b98ccd4b929d39cdaf24e707309a92085ef2d
MD5 d0023af6c7be03f0c123a99bd34ed881
BLAKE2b-256 0111c3d38ef639182246e02f96cd5a16332f59ea3d27c8f5c604954f1f2e2ed6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for deeplake-4.5.9-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c15c3a536d3d8d7cca9435b40c5c8c7a366ca3c7db505f4dce4f2743465b1227
MD5 435de84f7fd6dffa8f4635ebce9dfff5
BLAKE2b-256 19f67e9448ec000155d20fa383ddee278ed1fd146406ab915c04bab2182e5ff9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for deeplake-4.5.9-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 b19b83c428433790e8a31776a69473b9bc97d7e0d24e7ffb752ff5cb4a310aeb
MD5 b498bdc463d44f1548b9e8bfccfec807
BLAKE2b-256 fad53dccceb2b0b14655c505488b54d76c9525f8c738bf8920e3899c80b6a873

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for deeplake-4.5.9-cp310-cp310-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 398da0b59a6ef076eede543f186ed9e3c2f112bfeebf0d75f87fa835c226d413
MD5 8a5c4acbd984db7418f3855aeb55b4c8
BLAKE2b-256 561b58643bcea1b5cdd496a2582c5763d7474c0898491e5cdcbea094ff9bf020

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for deeplake-4.5.9-cp310-cp310-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e49c8bafd458c2557882e509b1634252e229ceeeb0fa18170a9b8e1869437f74
MD5 7151062d7208e5ff0aab5189abf5e5e5
BLAKE2b-256 f676bff200aa12c56294e2a26d0abf9559ae2b2687af91b9f705cb886fbd9389

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for deeplake-4.5.9-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 129fcaa3c0c896f1e9db1dc525aa3686f86f00d869c6c316e3f709630d021972
MD5 856af752d27f487eeebe7ac76826e51d
BLAKE2b-256 54b4d94cd321f3f4ff7b4268a507381e4af55581d77afba594b74664a37a789f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for deeplake-4.5.9-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 12dfa7032ce6adde926ec3a52e7a63b5060377d8ab2116e5639414eb049e53f0
MD5 05a5d18b4f05657faf8eb25bd29d1a24
BLAKE2b-256 4208b9846bdf6872d97cd5a79a49708497c4699556139c615805848e25b0a998

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for deeplake-4.5.9-cp39-cp39-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4c767b9814b27d3bf9354f8431480bb912eea24b97acde87a2dd04fbeb7d687b
MD5 81c24691dc4089b3a0a8bfad5ae0e1a4
BLAKE2b-256 d5d5774a6a5ebc2ef91c68fa8e993b0894f18170891431a7ba6231062be338f0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for deeplake-4.5.9-cp39-cp39-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 226dc5ab76eb2e71d0fb215b9f264a264df7a75c681b52372df45891dd5f5b95
MD5 b210cd2678d9ebb84690419c803ba7c9
BLAKE2b-256 20ec681c1922c9b8c5926bd60b9a254fd606b01fa0e01f52d0a12ee2c799fd47

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for deeplake-4.5.9-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 982381cf127998daf6e80b0d54fb1215e6975b7b491e8766b26c8f71d9328631
MD5 4225a9d2c5c1aa95cd01123cf31f794f
BLAKE2b-256 d7a07a01f9b0955af487e80bb0b3da6c966505df2e0678dd22b79058b29bbeb7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for deeplake-4.5.9-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 b541bbe0bf3d7887027f4b1974f1a961f70a5ff2a3d4cc1bd417603155ca6184
MD5 dea4d6f3e84523a760fd176abafcb7c6
BLAKE2b-256 c873336ae4f20f1068fb290ce8e01b606aa9ddfc003c8b3cd84bd5fc043c8040

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