
Visualization of the Reside dataset in the Deep Lake UI
The REalistic Single Image DEhazing (RESIDE) dataset is a new large-scale benchmark dataset that includes both synthetic and real-world hazy photos. RESIDE is organized into five subsets. Each subset provides serves a different training or evaluation purpose. RESIDE highlights diverse data sources and image contents.
Instead of downloading the RESIDE dataset in Python, you can effortlessly load it in Python via our Deep Lake open-source with just one line of code.
import deeplake
ds = deeplake.load("deeplake://activeloop/reside")
RESIDE Data Fields
- image: tensor containing the image.
- labels: tensor to distinguish between ‘hazy’, ‘trans’ & ‘clear’.
RESIDE Data Splits
- The Reside dataset training set is composed of 13990.
Train a model on RESIDE 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 RESIDE dataset with TensorFlow in Python
dataloader = ds.tensorflow()
- Homepage: https://sites.google.com/view/reside-dehaze-datasets/reside-v0
- Repository: N/A
- Paper: Li, Boyi and Ren, Wenqi and Fu, Dengpan and Tao, Dacheng and Feng, Dan and Zeng, Wenjun and Wang, Zhangyang. in Benchmarking Single-Image Dehazing and Beyond
- Point of Contact: boyilics@gmail.com
RESIDE Dataset Curators
Li, Boyi and Ren, Wenqi and Fu, Dengpan and Tao, Dacheng and Feng, Dan and Zeng, Wenjun and Wang, Zhangyang
RESIDE Dataset Licensing Information
Deep Lake users may have access to a variety of publicly available datasets. We do not host or distribute these datasets, vouch for their quality or fairness, or claim that you have a license to use the datasets. It is your responsibility to determine whether you have permission to use the datasets under their license.
If you’re a dataset owner and do not want your dataset to be included in this library, please get in touch through a GitHub issue. Thank you for your contribution to the ML community!
RESIDE Dataset Citation Information
@article{li2019benchmarking,
itle={Benchmarking Single-Image Dehazing and Beyond},
author={Li, Boyi and Ren, Wenqi and Fu, Dengpan and Tao, Dacheng and Feng, Dan and Zeng, Wenjun and Wang, Zhangyang},
journal={IEEE Transactions on Image Processing},
volume={28},
number={1},
pages={492--505},
year={2019},
publisher={IEEE}
}
What is the RESIDE dataset for Python?
The RESIDE (REalistic Single Image DEhazing) dataset is a popular benchmark consisting of both synthetic and real-world hazy images. The RESIDE dataset showcases a large range of data sources and image contents. It is divided into five subsets, each serving different training or evaluation purposes.
How can I use RESIDE dataset in PyTorch or TensorFlow?
You can stream the RESIDE 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 RESIDE dataset with PyTorch in Python or train a model on RESIDE dataset with TensorFlow in Python.