---
license: apache-2.0
---

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)
```