|
import datasets |
|
import pandas as pd |
|
|
|
_CITATION = """\ |
|
@InProceedings{huggingface:dataset, |
|
title = {cut-2d-masks-presentation-attack-detection}, |
|
author = {TrainingDataPro}, |
|
year = {2023} |
|
} |
|
""" |
|
|
|
_DESCRIPTION = """\ |
|
The dataset consists of videos of individuals wearing printed 2D masks or |
|
printed 2D masks with cut-out eyes and directly looking at the camera. |
|
Videos are filmed in different lightning conditions and in different places |
|
(indoors, outdoors). Each video in the dataset has an approximate duration of 2 |
|
seconds. |
|
""" |
|
_NAME = 'cut-2d-masks-presentation-attack-detection' |
|
|
|
_HOMEPAGE = f"https://huggingface.co/datasets/TrainingDataPro/{_NAME}" |
|
|
|
_LICENSE = "" |
|
|
|
_DATA = f"https://huggingface.co/datasets/TrainingDataPro/{_NAME}/resolve/main/data/" |
|
|
|
|
|
class Cut2dMasksPresentationAttackDetection(datasets.GeneratorBasedBuilder): |
|
"""Small sample of image-text pairs""" |
|
|
|
def _info(self): |
|
return datasets.DatasetInfo( |
|
description=_DESCRIPTION, |
|
features=datasets.Features({ |
|
'link': datasets.Value('string'), |
|
'type': datasets.Value('string') |
|
}), |
|
supervised_keys=None, |
|
homepage=_HOMEPAGE, |
|
citation=_CITATION, |
|
) |
|
|
|
def _split_generators(self, dl_manager): |
|
masks = dl_manager.download(f"{_DATA}masks.tar.gz") |
|
annotations = dl_manager.download(f"{_DATA}{_NAME}.csv") |
|
masks = dl_manager.iter_archive(masks) |
|
return [ |
|
datasets.SplitGenerator(name=datasets.Split.TRAIN, |
|
gen_kwargs={ |
|
"masks": masks, |
|
'annotations': annotations |
|
}), |
|
] |
|
|
|
def _generate_examples(self, masks, annotations): |
|
annotations_df = pd.read_csv(annotations, sep=';') |
|
|
|
for idx, (mask_path, mask) in enumerate(masks): |
|
yield idx, { |
|
'link': |
|
mask_path, |
|
'type': |
|
annotations_df.loc[annotations_df['link'] == mask_path] |
|
['type'].values[0] |
|
} |
|
|