CoolFace
Datasetpublic

Yossh/danbooru2023-webp-4Mpixel-224

The data set is just resized to 224*224 https://huggingface.co/datasets/KBlueLeaf/danbooru2023-webp-4Mpixel Pseudo code for processing def resize_image(file_path): with Image.open(file_path) as img: resized_img = img.resize((224, 224)) resized_img.save(file_path)

sourceHugging Faceapache-2.0updated 2y agoView on Hugging Face
2likes1.7kdownloads
Dataset Card

The data set is just resized to 224*224

https://huggingface.co/datasets/KBlueLeaf/danbooru2023-webp-4Mpixel

Pseudo code for processing

def resize_image(file_path):
  with Image.open(file_path) as img:
      resized_img = img.resize((224, 224))
  resized_img.save(file_path)