├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.yaml │ └── feature_request.yaml ├── langchain-tests │ ├── requirements.txt │ ├── setup_actions.py │ ├── test_activeloop_code_analysis.py │ ├── test_activeloop_deeplake.py │ ├── test_activeloop_deeplake_selfquery.py │ ├── test_activeloop_semanitic_search.py │ ├── test_activeloop_twitter.py │ ├── test_code_analysis_deeplake.py │ ├── test_semanitic_search.py │ └── test_twitter.py ├── pull_request_template.md ├── release-drafter.yml └── workflows │ ├── langchain-tests.yaml │ ├── lint.yml │ ├── pg-extension-build.yaml │ ├── release-drafter.yml │ └── test-push.yml ├── .gitignore ├── .pre-commit-config.yaml ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── SECURITY.md └── python └── deeplake ├── __init__.py ├── __init__.pyi ├── _tensorflow.py ├── _torch.py ├── core.py ├── core.pyi ├── formats.py ├── formats.pyi ├── ingestion ├── __init__.py └── coco │ ├── __init__.py │ ├── exceptions.py │ ├── from_coco.py │ └── ingest_coco.py ├── integrations ├── __init__.py ├── constants.py ├── labelbox │ ├── __init__.py │ ├── converters.py │ ├── deeplake_utils.py │ ├── labelbox_.py │ ├── labelbox_azure_utils.py │ ├── labelbox_converter.py │ ├── labelbox_debug.py │ ├── labelbox_metadata_utils.py │ └── labelbox_utils.py ├── mm │ ├── __init__.py │ ├── exceptions.py │ ├── get_indexes.py │ ├── ipc.py │ ├── mm_common.py │ ├── mm_runners.py │ ├── upcast_array.py │ ├── warnings.py │ └── worker_init_fn.py ├── mmdet │ ├── __init__.py │ ├── mmdet_.py │ ├── mmdet_dataset_.py │ ├── mmdet_utils_.py │ └── test_.py └── mmseg │ ├── __init__.py │ ├── compose_transform_.py │ ├── mmseg_.py │ ├── mmseg_dataset_.py │ └── test_.py ├── py.typed ├── schemas.py ├── schemas.pyi ├── storage.py ├── storage.pyi ├── tql.py ├── tql.pyi ├── types.py └── types.pyi /.github/ISSUE_TEMPLATE/bug_report.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/activeloopai/deeplake/HEAD/.github/ISSUE_TEMPLATE/bug_report.yaml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/activeloopai/deeplake/HEAD/.github/ISSUE_TEMPLATE/feature_request.yaml -------------------------------------------------------------------------------- /.github/langchain-tests/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/activeloopai/deeplake/HEAD/.github/langchain-tests/requirements.txt -------------------------------------------------------------------------------- /.github/langchain-tests/setup_actions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/activeloopai/deeplake/HEAD/.github/langchain-tests/setup_actions.py -------------------------------------------------------------------------------- /.github/langchain-tests/test_activeloop_code_analysis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/activeloopai/deeplake/HEAD/.github/langchain-tests/test_activeloop_code_analysis.py -------------------------------------------------------------------------------- /.github/langchain-tests/test_activeloop_deeplake.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/activeloopai/deeplake/HEAD/.github/langchain-tests/test_activeloop_deeplake.py -------------------------------------------------------------------------------- /.github/langchain-tests/test_activeloop_deeplake_selfquery.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/activeloopai/deeplake/HEAD/.github/langchain-tests/test_activeloop_deeplake_selfquery.py -------------------------------------------------------------------------------- /.github/langchain-tests/test_activeloop_semanitic_search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/activeloopai/deeplake/HEAD/.github/langchain-tests/test_activeloop_semanitic_search.py -------------------------------------------------------------------------------- /.github/langchain-tests/test_activeloop_twitter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/activeloopai/deeplake/HEAD/.github/langchain-tests/test_activeloop_twitter.py -------------------------------------------------------------------------------- /.github/langchain-tests/test_code_analysis_deeplake.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/activeloopai/deeplake/HEAD/.github/langchain-tests/test_code_analysis_deeplake.py -------------------------------------------------------------------------------- /.github/langchain-tests/test_semanitic_search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/activeloopai/deeplake/HEAD/.github/langchain-tests/test_semanitic_search.py -------------------------------------------------------------------------------- /.github/langchain-tests/test_twitter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/activeloopai/deeplake/HEAD/.github/langchain-tests/test_twitter.py -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/activeloopai/deeplake/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/release-drafter.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/activeloopai/deeplake/HEAD/.github/release-drafter.yml -------------------------------------------------------------------------------- /.github/workflows/langchain-tests.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/activeloopai/deeplake/HEAD/.github/workflows/langchain-tests.yaml -------------------------------------------------------------------------------- /.github/workflows/lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/activeloopai/deeplake/HEAD/.github/workflows/lint.yml -------------------------------------------------------------------------------- /.github/workflows/pg-extension-build.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/activeloopai/deeplake/HEAD/.github/workflows/pg-extension-build.yaml -------------------------------------------------------------------------------- /.github/workflows/release-drafter.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/activeloopai/deeplake/HEAD/.github/workflows/release-drafter.yml -------------------------------------------------------------------------------- /.github/workflows/test-push.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/activeloopai/deeplake/HEAD/.github/workflows/test-push.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/activeloopai/deeplake/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/activeloopai/deeplake/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/activeloopai/deeplake/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/activeloopai/deeplake/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/activeloopai/deeplake/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/activeloopai/deeplake/HEAD/SECURITY.md -------------------------------------------------------------------------------- /python/deeplake/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/activeloopai/deeplake/HEAD/python/deeplake/__init__.py -------------------------------------------------------------------------------- /python/deeplake/__init__.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/activeloopai/deeplake/HEAD/python/deeplake/__init__.pyi -------------------------------------------------------------------------------- /python/deeplake/_tensorflow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/activeloopai/deeplake/HEAD/python/deeplake/_tensorflow.py -------------------------------------------------------------------------------- /python/deeplake/_torch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/activeloopai/deeplake/HEAD/python/deeplake/_torch.py -------------------------------------------------------------------------------- /python/deeplake/core.py: -------------------------------------------------------------------------------- 1 | from ._deeplake.core import * 2 | 3 | __all__ = ["Dict", "IndexMapping64", "MemoryBuffer"] 4 | -------------------------------------------------------------------------------- /python/deeplake/core.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/activeloopai/deeplake/HEAD/python/deeplake/core.pyi -------------------------------------------------------------------------------- /python/deeplake/formats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/activeloopai/deeplake/HEAD/python/deeplake/formats.py -------------------------------------------------------------------------------- /python/deeplake/formats.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/activeloopai/deeplake/HEAD/python/deeplake/formats.pyi -------------------------------------------------------------------------------- /python/deeplake/ingestion/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/activeloopai/deeplake/HEAD/python/deeplake/ingestion/__init__.py -------------------------------------------------------------------------------- /python/deeplake/ingestion/coco/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/deeplake/ingestion/coco/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/activeloopai/deeplake/HEAD/python/deeplake/ingestion/coco/exceptions.py -------------------------------------------------------------------------------- /python/deeplake/ingestion/coco/from_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/activeloopai/deeplake/HEAD/python/deeplake/ingestion/coco/from_coco.py -------------------------------------------------------------------------------- /python/deeplake/ingestion/coco/ingest_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/activeloopai/deeplake/HEAD/python/deeplake/ingestion/coco/ingest_coco.py -------------------------------------------------------------------------------- /python/deeplake/integrations/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/activeloopai/deeplake/HEAD/python/deeplake/integrations/__init__.py -------------------------------------------------------------------------------- /python/deeplake/integrations/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/activeloopai/deeplake/HEAD/python/deeplake/integrations/constants.py -------------------------------------------------------------------------------- /python/deeplake/integrations/labelbox/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/activeloopai/deeplake/HEAD/python/deeplake/integrations/labelbox/__init__.py -------------------------------------------------------------------------------- /python/deeplake/integrations/labelbox/converters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/activeloopai/deeplake/HEAD/python/deeplake/integrations/labelbox/converters.py -------------------------------------------------------------------------------- /python/deeplake/integrations/labelbox/deeplake_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/activeloopai/deeplake/HEAD/python/deeplake/integrations/labelbox/deeplake_utils.py -------------------------------------------------------------------------------- /python/deeplake/integrations/labelbox/labelbox_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/activeloopai/deeplake/HEAD/python/deeplake/integrations/labelbox/labelbox_.py -------------------------------------------------------------------------------- /python/deeplake/integrations/labelbox/labelbox_azure_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/activeloopai/deeplake/HEAD/python/deeplake/integrations/labelbox/labelbox_azure_utils.py -------------------------------------------------------------------------------- /python/deeplake/integrations/labelbox/labelbox_converter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/activeloopai/deeplake/HEAD/python/deeplake/integrations/labelbox/labelbox_converter.py -------------------------------------------------------------------------------- /python/deeplake/integrations/labelbox/labelbox_debug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/activeloopai/deeplake/HEAD/python/deeplake/integrations/labelbox/labelbox_debug.py -------------------------------------------------------------------------------- /python/deeplake/integrations/labelbox/labelbox_metadata_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/activeloopai/deeplake/HEAD/python/deeplake/integrations/labelbox/labelbox_metadata_utils.py -------------------------------------------------------------------------------- /python/deeplake/integrations/labelbox/labelbox_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/activeloopai/deeplake/HEAD/python/deeplake/integrations/labelbox/labelbox_utils.py -------------------------------------------------------------------------------- /python/deeplake/integrations/mm/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/deeplake/integrations/mm/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/activeloopai/deeplake/HEAD/python/deeplake/integrations/mm/exceptions.py -------------------------------------------------------------------------------- /python/deeplake/integrations/mm/get_indexes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/activeloopai/deeplake/HEAD/python/deeplake/integrations/mm/get_indexes.py -------------------------------------------------------------------------------- /python/deeplake/integrations/mm/ipc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/activeloopai/deeplake/HEAD/python/deeplake/integrations/mm/ipc.py -------------------------------------------------------------------------------- /python/deeplake/integrations/mm/mm_common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/activeloopai/deeplake/HEAD/python/deeplake/integrations/mm/mm_common.py -------------------------------------------------------------------------------- /python/deeplake/integrations/mm/mm_runners.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/activeloopai/deeplake/HEAD/python/deeplake/integrations/mm/mm_runners.py -------------------------------------------------------------------------------- /python/deeplake/integrations/mm/upcast_array.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/activeloopai/deeplake/HEAD/python/deeplake/integrations/mm/upcast_array.py -------------------------------------------------------------------------------- /python/deeplake/integrations/mm/warnings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/activeloopai/deeplake/HEAD/python/deeplake/integrations/mm/warnings.py -------------------------------------------------------------------------------- /python/deeplake/integrations/mm/worker_init_fn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/activeloopai/deeplake/HEAD/python/deeplake/integrations/mm/worker_init_fn.py -------------------------------------------------------------------------------- /python/deeplake/integrations/mmdet/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/activeloopai/deeplake/HEAD/python/deeplake/integrations/mmdet/__init__.py -------------------------------------------------------------------------------- /python/deeplake/integrations/mmdet/mmdet_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/activeloopai/deeplake/HEAD/python/deeplake/integrations/mmdet/mmdet_.py -------------------------------------------------------------------------------- /python/deeplake/integrations/mmdet/mmdet_dataset_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/activeloopai/deeplake/HEAD/python/deeplake/integrations/mmdet/mmdet_dataset_.py -------------------------------------------------------------------------------- /python/deeplake/integrations/mmdet/mmdet_utils_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/activeloopai/deeplake/HEAD/python/deeplake/integrations/mmdet/mmdet_utils_.py -------------------------------------------------------------------------------- /python/deeplake/integrations/mmdet/test_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/activeloopai/deeplake/HEAD/python/deeplake/integrations/mmdet/test_.py -------------------------------------------------------------------------------- /python/deeplake/integrations/mmseg/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/activeloopai/deeplake/HEAD/python/deeplake/integrations/mmseg/__init__.py -------------------------------------------------------------------------------- /python/deeplake/integrations/mmseg/compose_transform_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/activeloopai/deeplake/HEAD/python/deeplake/integrations/mmseg/compose_transform_.py -------------------------------------------------------------------------------- /python/deeplake/integrations/mmseg/mmseg_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/activeloopai/deeplake/HEAD/python/deeplake/integrations/mmseg/mmseg_.py -------------------------------------------------------------------------------- /python/deeplake/integrations/mmseg/mmseg_dataset_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/activeloopai/deeplake/HEAD/python/deeplake/integrations/mmseg/mmseg_dataset_.py -------------------------------------------------------------------------------- /python/deeplake/integrations/mmseg/test_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/activeloopai/deeplake/HEAD/python/deeplake/integrations/mmseg/test_.py -------------------------------------------------------------------------------- /python/deeplake/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/deeplake/schemas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/activeloopai/deeplake/HEAD/python/deeplake/schemas.py -------------------------------------------------------------------------------- /python/deeplake/schemas.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/activeloopai/deeplake/HEAD/python/deeplake/schemas.pyi -------------------------------------------------------------------------------- /python/deeplake/storage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/activeloopai/deeplake/HEAD/python/deeplake/storage.py -------------------------------------------------------------------------------- /python/deeplake/storage.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/activeloopai/deeplake/HEAD/python/deeplake/storage.pyi -------------------------------------------------------------------------------- /python/deeplake/tql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/activeloopai/deeplake/HEAD/python/deeplake/tql.py -------------------------------------------------------------------------------- /python/deeplake/tql.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/activeloopai/deeplake/HEAD/python/deeplake/tql.pyi -------------------------------------------------------------------------------- /python/deeplake/types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/activeloopai/deeplake/HEAD/python/deeplake/types.py -------------------------------------------------------------------------------- /python/deeplake/types.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/activeloopai/deeplake/HEAD/python/deeplake/types.pyi --------------------------------------------------------------------------------