Step 4: Accessing Data
Learn how Deep Lake Datasets can be accessed or loaded from a variety of storage locations.
How to Access and Load Datasets with Deep Lake
Loading Datasets
import deeplake
# Local Filepath
ds = deeplake.load('./my_dataset_path') # Similar functionality to deeplake.dataset(path)
# S3
ds = deeplake.load('s3://my_dataset_bucket', creds={...})
# Public Dataset hosted by Activeloop
## Activeloop Storage - See Step 6
ds = deeplake.load('hub://activeloop/public_dataset_name')
# Dataset in another organization on Activeloop Platform
ds = deeplake.load('hub://org_name/dataset_name')Referencing Tensors
Accessing Data
Last updated
Was this helpful?