
Visualization of the CARPK dataset in the Deep Lake UI
What is CARPK Dataset?
Download CARPK Dataset in Python
import deeplake
ds = deeplake.load("hub://activeloop/carpk-train")
import deeplake
ds = deeplake.load("hub://activeloop/carpk-test")
CARPK Data Fields
- image: tensor containing the image.
- boxes: tensor to identify cars using a bounding box.
- labels: tensor to label identifies an object as a car.
CARPK Data Fields
- The Carpk dataset training set is composed of 989.
- The Carpk dataset testing set is composed of 459.
Train a model on CARPK dataset with PyTorch in Python
Let’s use Deep Lake built-in PyTorch one-line dataloader to connect the data to the compute:
dataloader = ds.pytorch(num_workers=0, batch_size=4, shuffle=False)
Train a model on CARPK dataset with TensorFlow in Python
dataloader = ds.tensorflow()
- Homepage: https://lafi.github.io/LPN/
- Repository: N/A
- Paper: Meng-Ru Hsieh, Yen-Liang Lin, Winston H. Hsu. Drone-based Object Counting by Spatially Regularized Regional Proposal Networks, ICCV 2017
- Point of Contact: N/A
CARPK Dataset Curators
Meng-Ru Hsieh, Yen-Liang Lin, Winston H. Hsu
CARPK Dataset Licensing Information
CARPK Dataset Licensing Information
@inproceedings{Hsieh_2017_ICCV,
Author = {@inproceedings{Hsieh_2017_ICCV,
Author = {Meng-Ru Hsieh and Yen-Liang Lin and Winston H. Hsu},
Booktitle = {The IEEE International Conference on Computer Vision (ICCV)},
Title = {Drone-based Object Counting by Spatially Regularized Regional Proposal Networks},
Year = {2017},
organization={IEEE}
}},
Booktitle = {The IEEE International Conference on Computer Vision (ICCV)},
Title = {Drone-based Object Counting by Spatially Regularized Regional Proposal Networks},
Year = {2017},
organization={IEEE}
}
What is the CARPK dataset for Python?
CARPK dataset is a collection of approximately 90,000 cars in 4 distinct parking lots photographed by drones. The (PHANTOM 3 PROFESSIONAL). The photos were taken utilizing a robot at a tallness of around 40 meters. Every vehicle’s jumping enclosure is labeled the picture set. The upper left and base right places of all assigned bouncing boxes have been fastidiously recorded.
How to download the CARPK dataset in Python?
You can load the CARPK dataset fast with one line of code using the open-source package Activeloop Deep Lake in Python. See detailed instructions on how to load the CARPK dataset training subset and how to load the CARPK dataset testing subset in Python.
How can I use CARPK dataset in PyTorch or TensorFlow?
You can stream the CARPK dataset while training a model in PyTorch or TensorFlow with one line of code using the open-source package Activeloop Deep Lake in Python. See detailed instructions on how to train a model on the CARPK dataset with PyTorch in Python or train a model on the CARPK dataset with TensorFlow in Python.