Skip to content
ai-supply.store
استكشافالفئاتلوحة المتصدرينالمجتمعAgent APIFAQ
تسجيل الدخولإنشاء حساب مجاني
catalog / Data & ETL / Deep Lake
▣DatasetData & ETLFree

Deep Lake

AI data lake with multimodal tensor storage, vector search, and serverless SQL — stream datasets directly to PyTorch and TensorFlow.

@ai-supply
التثبيتات129k
⟳ upstream v4.5.2 · updated 5mo ago
↗ مستودع المصدر
← More Data & ETLData & ETL leaderboard →How we grade security →Source ↗
✓ Grade A · 100/100 · SafeSecurity assessment
✓No compromise signals12capabilities surfaced7of 20 OWASP controls clear
Potentially unbounded loopSuspicious code patternsBroad capability surfaceSuspicious network references
scanned 18d ago·osv · gitleaks · opengrep · picklescan + heuristics·full breakdown in the Security tab ↓

Deep Lake

Deep Lake (by Activeloop) is an AI-native data runtime that stores multimodal datasets — images, videos, text, audio, annotations, and embeddings — as chunked tensors in cloud or local storage. It exposes a vector store API for RAG pipelines and streams data directly into PyTorch/TensorFlow DataLoaders without full dataset downloads.

Key Features

  • Multimodal tensor storage — one dataset can contain images, text, embeddings, bounding boxes, and labels
  • Vector search — cosine, L2, and dot-product ANN search over embedding tensors; hybrid text+vector search
  • Serverless SQL — query datasets via TQL (Tensor Query Language) with no data movement
  • Streaming DataLoader — pull mini-batches for training directly from S3/GCS without local copies
  • Data versioning — branch, commit, checkout datasets like git; full history tracking
  • Integrations — LangChain, LlamaIndex, PyTorch, TensorFlow, and HuggingFace compatible

Quick Start

pip install deeplake
import deeplake

ds = deeplake.dataset("hub://activeloop/coco-train")
for sample in ds.pytorch(batch_size=4):
    images = sample["images"]  # stream from cloud

Install via ai-supply

npx ai-supply add deeplake-multimodal-data-lake

Curated mirror of the open-source Deep Lake (Apache-2.0). Get it from the source.

Rating rank
#1
of 24 in Data & ETL
Install rank
#11
of 24 in Data & ETL
Security score
100/100 · A
safe
Security rank
#1
of 24 in Data & ETL
Installs
129k
cat avg 164k
This listing vs category average
Installs
this
cat avg
Security (of 100)
this
cat avg
Adoption trend
See the Data & ETL leaderboard →
✓ Security: Safe · 100100/100 · grade Ascanned 18d ago
✓ no compromise signals12 risk-surface · 8/20 OWASP controls flagged

Compromise signals — malicious or tampered code (leaked secrets, backdoors, a dropped executable) — reduce the score, and known dependency CVEs carry a bounded penalty (they warrant review but never QUARANTINE — update the dependency to clear). Other dangerous-by-capability traits are risk surface, expected for some capabilities. Every finding is mapped to its OWASP control below.

Data card · high confidence (static)
txtjsonlicense: detected
PII surface: Email addresses present, Phone number present
1051 files

Findings mapped to the OWASP Top 10 for LLM Applications (2025) and the OWASP Machine Learning Security Top 10. Expand any flagged control for the exact findings — compromise reduces the score; expected/risk-surface do not, except a known CVE, which carries a small bounded penalty (high/critical → Review).

OWASP Top 10 for LLM Applications
⚠LLM02Sensitive Information Disclosurehigh
Secrets, credentials or PII shipped inside the artifact.
•Email addresses present — contains email-like strings · activeloopai-deeplake-f432041/.github/workflows/pg-extension-build.yamlexpected
•Phone number present — contains phone number-like pattern (E.164 or formatted) · activeloopai-deeplake-f432041/cpp/3rd_party/libtiff/t4.h (CWE-359)expected
•Credit-card-like number — a number passes the Luhn checksum · activeloopai-deeplake-f432041/cpp/3rd_party/sql-parser/test/queries/queries-bad.sql (CWE-359)expected
⚠LLM05Improper Output Handlinghigh
Code that pipes model/user output into shell, eval, SQL or paths unsafely.
•Suspicious code patterns — dynamic code execution · activeloopai-deeplake-f432041/cpp/3rd_party/rnifti/RNifti/NiftiImage_impl.h (CWE-95)risk surface
•Suspicious code patterns — OS command execution · activeloopai-deeplake-f432041/docs/hooks/custom_hooks.py (CWE-78)risk surface
•Suspicious code patterns — destructive rm -rf / · activeloopai-deeplake-f432041/postgres/Dockerfile (CWE-78)risk surface
•Suspicious code patterns — dynamic code execution; pickle deserialization · activeloopai-deeplake-f432041/python/deeplake/integrations/mmdet/test_.py (CWE-95)risk surface
⚠LLM08Vector and Embedding Weaknesseshigh
PII or plaintext source leakage in embedding/vector exports.
Embedding inversion/poisoning is largely runtime; static check covers PII in vector exports.
•Email addresses present — contains email-like strings · activeloopai-deeplake-f432041/.github/workflows/pg-extension-build.yamlexpected
•Phone number present — contains phone number-like pattern (E.164 or formatted) · activeloopai-deeplake-f432041/cpp/3rd_party/libtiff/t4.h (CWE-359)expected
•Credit-card-like number — a number passes the Luhn checksum · activeloopai-deeplake-f432041/cpp/3rd_party/sql-parser/test/queries/queries-bad.sql (CWE-359)expected
⚠LLM10Unbounded Consumptionmedium
Unbounded loops/recursion causing DoS or runaway cost.
Enforced at runtime by the gateway (rate limits + spend caps + size caps); static check flags unbounded loops.
•Potentially unbounded loop — an infinite loop (while True / while(1) / for(;;)) may cause runaway consumption · activeloopai-deeplake-f432041/cpp/3rd_party/libtiff/tif_dirread.c (CWE-835)risk surface
⚠LLM06Excessive Agencylow
Over-broad tool/permission surface or unrestricted egress.
•Broad capability surface — 4 high-impact capability categories referenced — verify least-privilege · activeloopai-deeplake-f432041/cpp/3rd_party/sql-parser/hyrise/web-interface/jquery-1.11.1.min.js (CWE-272)risk surface
•Broad capability surface — 3 high-impact capability categories referenced — verify least-privilege · activeloopai-deeplake-f432041/cpp/deeplake_api/dataset.hpp (CWE-272)risk surface
§LLM09MisinformationGovernance
Artifacts designed to produce false/deceptive output.
Detectable only by runtime behavioral evaluation; addressed via responsible-use attestation.
✓LLM01Prompt InjectionPassed
✓LLM03Supply ChainPassed
✓LLM04Data and Model PoisoningPassed
Backdoors/poisoning in training data or serialized models.
Behavioral poisoning needs model execution; static check covers unsafe serialization + dataset skew only.
✓LLM07System Prompt LeakagePassed
OWASP Machine Learning Security Top 10
⚠ML02Data Poisoninghigh
Poisoned training datasets with triggers or anomalous distributions.
Static check covers trigger phrasing, PII and label skew; full poisoning detection is runtime.
•Email addresses present — contains email-like strings · activeloopai-deeplake-f432041/.github/workflows/pg-extension-build.yamlexpected
•Phone number present — contains phone number-like pattern (E.164 or formatted) · activeloopai-deeplake-f432041/cpp/3rd_party/libtiff/t4.h (CWE-359)expected
•Credit-card-like number — a number passes the Luhn checksum · activeloopai-deeplake-f432041/cpp/3rd_party/sql-parser/test/queries/queries-bad.sql (CWE-359)expected
⚠ML09Output Integrityhigh
Middleware tampering with model outputs in transit.
Gateway enforces TLS + response integrity; static check flags output-rewriting code.
•Suspicious code patterns — dynamic code execution · activeloopai-deeplake-f432041/cpp/3rd_party/rnifti/RNifti/NiftiImage_impl.h (CWE-95)risk surface
•Suspicious code patterns — OS command execution · activeloopai-deeplake-f432041/docs/hooks/custom_hooks.py (CWE-78)risk surface
•Suspicious code patterns — destructive rm -rf / · activeloopai-deeplake-f432041/postgres/Dockerfile (CWE-78)risk surface
•Suspicious code patterns — dynamic code execution; pickle deserialization · activeloopai-deeplake-f432041/python/deeplake/integrations/mmdet/test_.py (CWE-95)risk surface
⚠ML05Model Theftlow
Unlicensed re-distribution / license-incompatible derivatives.
Static check verifies license declaration; extraction throttling is runtime.
•No license signal — no SPDX id or license keyword found · activeloopai-deeplake-f432041/.clang-formatrisk surface
§ML01Input Manipulation (Adversarial)Governance
Models vulnerable to adversarial perturbations.
Requires runtime robustness evaluation; addressed via publisher robustness attestation.
§ML03Model InversionGovernance
Training data reconstructable from a model's outputs.
Runtime/evaluation property; addressed via model-card data-provenance + DP attestation.
§ML04Membership InferenceGovernance
Determining whether a record was in the training set.
Runtime/evaluation property; addressed via overfitting disclosure + DP attestation.
§ML08Model SkewingGovernance
Models trained on skewed data producing biased output.
Requires fairness evaluation; addressed via model-card bias/limitations disclosure.
✓ML06AI Supply ChainPassed
✓ML07Transfer Learning AttackPassed
Backdoored base models / LoRA adapters propagating to derivatives.
Backdoor detection needs behavioral probing; static check covers unsafe serialization + provenance.
✓ML10Model Poisoning (Weights)Passed
Tampered model weight files; integrity must be verifiable.
Static check enforces safe formats + records a content hash for downstream verification.
Other findings (24) · hygiene / uncategorized
•Unrecognized file type — '.clang-format' is not on the allowlist · activeloopai-deeplake-f432041/.clang-formatrisk surface
•Unrecognized file type — '.gitignore' is not on the allowlist · activeloopai-deeplake-f432041/.gitignorerisk surface
•Unrecognized file type — '.?' is not on the allowlist · activeloopai-deeplake-f432041/DEEPLAKE_API_VERSIONrisk surface
•Unrecognized file type — '.cpp' is not on the allowlist · activeloopai-deeplake-f432041/cpp/3rd_party/boost_json_impl.cpprisk surface
•Unrecognized file type — '.h' is not on the allowlist · activeloopai-deeplake-f432041/cpp/3rd_party/cblas.hrisk surface
•Unrecognized file type — '.hpp' is not on the allowlist · activeloopai-deeplake-f432041/cpp/3rd_party/json/comparision.hpprisk surface
•Unrecognized file type — '.c' is not on the allowlist · activeloopai-deeplake-f432041/cpp/3rd_party/libtiff/mkspans.crisk surface
•Unrecognized file type — '.in' is not on the allowlist · activeloopai-deeplake-f432041/cpp/3rd_party/libtiff/tif_config.h.cmake.inrisk surface
•Unrecognized file type — '.cxx' is not on the allowlist · activeloopai-deeplake-f432041/cpp/3rd_party/libtiff/tif_stream.cxxrisk surface
•Unrecognized file type — '.hxx' is not on the allowlist · activeloopai-deeplake-f432041/cpp/3rd_party/libtiff/tiffio.hxxrisk surface
•Unrecognized file type — '.y' is not on the allowlist · activeloopai-deeplake-f432041/cpp/3rd_party/sql-parser/src/parser/bison_parser.yrisk surface
•Unrecognized file type — '.l' is not on the allowlist · activeloopai-deeplake-f432041/cpp/3rd_party/sql-parser/src/parser/flex_lexer.lrisk surface
•Unrecognized file type — '.cmake' is not on the allowlist · activeloopai-deeplake-f432041/cpp/CMakeLists.pg.cmakerisk surface
•Suspicious network references — suspicious TLD (1 URLs) · activeloopai-deeplake-f432041/cpp/cmake/modules/FindPostgres.cmakerisk surface
•Unrecognized file type — '.clang-tidy' is not on the allowlist · activeloopai-deeplake-f432041/cpp/deeplake_pg/.clang-tidyrisk surface
•Suspicious network references — suspicious TLD (2 URLs) · activeloopai-deeplake-f432041/cpp/vcpkg-configuration.jsonrisk surface
•Unrecognized file type — '.patch' is not on the allowlist · activeloopai-deeplake-f432041/cpp/vcpkg-ports/abseil/random_rander_copts.patchrisk surface
•Unrecognized file type — '.diff' is not on the allowlist · activeloopai-deeplake-f432041/cpp/vcpkg-ports/openblas/arm32-asm-function.diffrisk surface
•Unrecognized file type — '.dockerignore' is not on the allowlist · activeloopai-deeplake-f432041/docs/.dockerignorerisk surface
•Unrecognized file type — '.pages' is not on the allowlist · activeloopai-deeplake-f432041/docs/docs/.pagesrisk surface
•Unrecognized file type — '.control' is not on the allowlist · activeloopai-deeplake-f432041/postgres/pg_deeplake.controlrisk surface
•Unrecognized file type — '.ini' is not on the allowlist · activeloopai-deeplake-f432041/postgres/tests/py_tests/pytest.inirisk surface
•Unrecognized file type — '.psql' is not on the allowlist · activeloopai-deeplake-f432041/postgres/tests/sql/utils.psqlrisk surface
•Unrecognized file type — '.pyi' is not on the allowlist · activeloopai-deeplake-f432041/python/deeplake/__init__.pyirisk surface
✔ verified source · pinned activeloopai-deeplake-f432041
Check against a policy

The same gate an agent runs before installing (POST /api/v1/trust/deeplake-multimodal-data-lake/check). Click a policy:

Consume Deep Lake programmatically. Authenticate with an API key or session — see Authorize an agent.

# Agents: CHECK BEFORE YOU INSTALL (no auth) — score, grade, level, capability manifest
curl https://ai-supply.store/api/v1/trust/deeplake-multimodal-data-lake

# Gate against your org policy (returns { pass, violations })
curl -X POST https://ai-supply.store/api/v1/trust/deeplake-multimodal-data-lake/check \
  -H "Content-Type: application/json" \
  -d '{"minGrade":"B","denyPermissions":["shell"],"denyUnknownEgress":true}'

# CLI
npx ai-supply add deeplake-multimodal-data-lake

# REST (install → download)
curl -X POST https://ai-supply.store/api/v1/listings/deeplake-multimodal-data-lake/install \
  -H "Authorization: Bearer $AIM_KEY"

# MCP tool
install_listing({ "slug": "deeplake-multimodal-data-lake" })
OpenAPI spec →
vlatest
✓ Security: Safe · 1001mo ago

Curated mirror — latest upstream source. See the repository for tagged releases.

Sign in and install this listing to leave a review.

More from @ai-supply

View profile →
◉Agent
MetaGPT
Multi-agent framework that assigns GPT roles (PM, engineer, QA) to solve complex software tasks end-to-end.
↓ 1.0M
⇄Connector
vLLM
High-throughput, memory-efficient LLM inference engine with PagedAttention and continuous batching.
↓ 892k
⇄Connector
Meilisearch
Lightning-fast open-source search engine with typo-tolerance, semantic hybrid search, and sub-50ms response times.
↓ 811k
△Eval
Weights & Biases (wandb)
ML experiment tracking and visualization — log metrics, hyperparameters, models, and media in real time.
↓ 784k
ai-supply.store

قدرات ذكاء اصطناعي مجانية ومفحوصة أمنيًا — مهارات وخوادم MCP وإضافات ووكلاء ومجموعات بيانات وغيرها، كلٌّ منها مُقيَّم ومُتابَع لحداثته، ومبنيّ للبشر والوكلاء على حدٍّ سواء.

api · v3.1status · all green
تواصل معنا
support@ai-supply.storesecurity@ai-supply.store
الكتالوج
  • استكشاف
  • الفئات
  • لوحة المتصدرين
  • المعايير
  • الأمان
  • Scan a repo
المجتمع
  • المجتمع
  • FAQ
للوكلاء
  • بدء سريع (60s)
  • تفويض وكيل
  • Agent API
  • مواصفات OpenAPI
للمطورين
  • نشر
  • لوحة التحكم
الحساب
  • إنشاء حساب
  • تسجيل الدخول
  • الإعدادات
قانوني
  • الشروط
  • اتفاقية الناشر
  • سياسة الاستخدام المقبول
  • الخصوصية