VisDrone / VisDrone-Dataset

The dataset for drone based detection and tracking is released, including both image/video, and annotations.
1.22k stars 157 forks source link

Add alternate way of dataset access #31

Open dhiganthrao opened 2 years ago

dhiganthrao commented 2 years ago

Greetings! I'm Dhiganth, a contributor to Activeloop's Python package, Hub!

The VisDrone Dataset has been added to Activeloop Hub, an open-source dataset format for AI. Users can now load this dataset in seconds by running

import hub
# Load training subset
ds_train = hub.load("hub://activeloop/visdrone-det-train")

# Load testing subset
ds_test = hub.load("hub://activeloop/visdrone-det-test")

# Load validation subset
ds_val = hub.load("hub://activeloop/visdrone-det-val")

# Load testing-dev subset
ds_test_dev = hub.load("hub://activeloop/visdrone-det-test-dev")

(with Hub, they can stream the data instead of fully downloading it, so the access is much faster).

Hope this brings value to the community!

dhiganthrao commented 2 years ago

Hello, pushing this up in case it wasn't noticed!