|
import os |
|
import glob |
|
import random |
|
import zipfile |
|
|
|
import datasets |
|
from datasets.tasks import ImageClassification |
|
|
|
_HOMEPAGE = "https://github.com/your-github/renovation" |
|
|
|
_CITATION = """\ |
|
@ONLINE {renovationdata, |
|
author="Your Name", |
|
title="Renovation dataset", |
|
month="January", |
|
year="2023", |
|
url="https://github.com/your-github/renovation" |
|
} |
|
""" |
|
|
|
_DESCRIPTION = """\ |
|
Renovations is a dataset of images of houses taken in the field using smartphone |
|
cameras. It consists of 7 classes: Not Applicable, Very Poor, Poor, Fair, Good, Excellent, and Exceptional renovations. |
|
Data was collected by the your research lab. |
|
""" |
|
|
|
_URLS = { |
|
"Not Applicable": "https://huggingface.co/datasets/rshrott/photos/resolve/main/Not Applicable.zip", |
|
"Very Poor": "https://huggingface.co/datasets/rshrott/photos/resolve/main/Very Poor.zip", |
|
"Poor": "https://huggingface.co/datasets/rshrott/photos/resolve/main/Poor.zip", |
|
"Fair": "https://huggingface.co/datasets/rshrott/photos/resolve/main/Fair.zip", |
|
"Good": "https://huggingface.co/datasets/rshrott/photos/resolve/main/Good.zip", |
|
"Excellent": "https://huggingface.co/datasets/rshrott/photos/resolve/main/Excellent.zip", |
|
"Exceptional": "https://huggingface.co/datasets/rshrott/photos/resolve/main/Exceptional.zip" |
|
} |
|
|
|
_NAMES = ["Not Applicable", "Very Poor", "Poor", "Fair", "Good", "Excellent", "Exceptional"] |
|
|
|
class Renovations(datasets.GeneratorBasedBuilder): |
|
"""Renovations house images dataset.""" |
|
|
|
def _info(self): |
|
return datasets.DatasetInfo( |
|
description=_DESCRIPTION, |
|
features=datasets.Features( |
|
{ |
|
"image_file_path": datasets.Value("string"), |
|
"image": datasets.Image(), |
|
"labels": datasets.features.ClassLabel(names=_NAMES), |
|
} |
|
), |
|
supervised_keys=("image", "labels"), |
|
homepage=_HOMEPAGE, |
|
citation=_CITATION, |
|
task_templates=[ImageClassification(image_column="image", label_column="labels")], |
|
) |
|
|
|
def _split_generators(self, dl_manager): |
|
data_dir = dl_manager.download_and_extract(_URLS) |
|
return [ |
|
datasets.SplitGenerator( |
|
name=datasets.Split.TRAIN, |
|
gen_kwargs={ |
|
"data_dir": data_dir, |
|
"split": "train", |
|
}, |
|
), |
|
datasets.SplitGenerator( |
|
name=datasets.Split.VALIDATION, |
|
gen_kwargs={ |
|
"data_dir": data_dir, |
|
"split": "val", |
|
}, |
|
), |
|
datasets.SplitGenerator( |
|
name=datasets.Split.TEST, |
|
gen_kwargs={ |
|
"data_dir": data_dir, |
|
"split": "test", |
|
}, |
|
), |
|
] |
|
|
|
|
|
def _generate_examples(self, data_dir, split): |
|
all_files_and_labels = [] |
|
for label in _NAMES: |
|
folder_path = os.path.join(data_dir, label) |
|
files = glob.glob(os.path.join(folder_path, "*.jpeg")) |
|
for file in files: |
|
all_files_and_labels.append((file, label)) |
|
|
|
random.seed(43) |
|
random.shuffle(all_files_and_labels) |
|
|
|
num_files = len(all_files_and_labels) |
|
train_data = all_files_and_labels[:int(num_files*0.9)] |
|
val_test_data = all_files_and_labels[int(num_files*0.9):] |
|
|
|
if split == "train": |
|
data_to_use = train_data |
|
else: |
|
data_to_use = val_test_data |
|
|
|
for idx, (file, label) in enumerate(data_to_use): |
|
yield idx, { |
|
"image_file_path": file, |
|
"image": file, |
|
"labels": label, |
|
} |
|
|
|
|
|
|
|
|