dereklin1205/dlcv_final_data_finetune
DLCV Final Dataset This dataset is used for the Deep Learning for Computer Vision (DLCV) final project.It contains ground-truth layers organized per sample and is designed for training and evaluating computer vision models. ๐ Dataset Structure The dataset is organized as follows: dlcv_final/ โโโ gt_layers/ โ โโโ sample_0000/ โ โ โโโ layer_0.png โ โ โโโ layer_1.png โ โ โโโ ... โ โโโ sample_0001/ โ โโโ sample_0002/ โ โโโ ... โโโ README.md Each sample_xxxxโฆ See the full description on the dataset page: https://huggingface.co/datasets/dereklin1205/dlcv_final_data_finetune.
DLCV Final Dataset
This dataset is used for the Deep Learning for Computer Vision (DLCV) final project. It contains ground-truth layers organized per sample and is designed for training and evaluating computer vision models.
๐ Dataset Structure
The dataset is organized as follows:
dlcv_final/
โโโ gt_layers/
โ โโโ sample_0000/
โ โ โโโ layer_0.png
โ โ โโโ layer_1.png
โ โ โโโ ...
โ โโโ sample_0001/
โ โโโ sample_0002/
โ โโโ ...
โโโ README.md
- Each
sample_xxxxdirectory corresponds to one data sample - Files inside each sample directory represent ground-truth layers
- Folder structure is preserved to simplify indexing and loading
๐ How to Use
You can access this dataset using the ๐ค datasets library:
from datasets import load_dataset
dataset = load_dataset("dereklin1205/dlcv_final_data_finetune")
