Quickstart
A jump-start guide to using Deep Lake.
Last updated
Was this helpful?
A jump-start guide to using Deep Lake.
Last updated
Was this helpful?
Deep Lake can be installed through pip. By default, Deep Lake does not install dependencies for audio, video, google-cloud, and other features. .
Let's load the , a rich dataset with many object detections per image. Datasets hosted on Activeloop Platform are typically identified by host organization name followed by the dataset name: activeloop/visdrone-det-train
.
Data is not immediately read into memory because Deep Lake operates . You can fetch data by calling the .numpy()
or .data()
methods:
Other metadata such as the mapping between numerical labels and their text counterparts can be accessed using:
Deep Lake enables users to visualize and interpret large datasets. The tensor layout for a dataset can be inspected using:
You can perform all of the steps above and more with your own datasets! Please check out the links below to learn more:
The dataset can be , or using an iframe in a Jupyter notebook:
Visualizing datasets in will unlock more features and faster performance compared to visualization in Jupyter notebooks.
Congratulations, you've got Deep Lake working on your local machine