narugo's picture
Sync block #998, with 1 image, 1 embedding, on 2024-12-03 09:44:31 UTC
5a66b4f verified
---
license: other
task_categories:
- image-classification
- zero-shot-image-classification
- text-to-image
language:
- en
tags:
- art
- anime
- not-for-all-audiences
size_categories:
- 100K<n<1M
annotations_creators:
- no-annotation
source_datasets:
- e621
---
# E621 Newest 4M Re-encoded Dataset
This is the re-encoded dataset of [deepghs/e621_newest](https://huggingface.co/datasets/deepghs/e621_newest). And all the resized images are maintained here.
There are 477925 images in total. The maximum ID of these images is 5217942. Last updated at `2024-12-03 09:44:23 UTC`.
This dataset only contains newest webp images, if you are looking for old webp images, just see [NebulaeWis/e621-2024-webp-4Mpixel](https://huggingface.co/datasets/NebulaeWis/e621-2024-webp-4Mpixel).
# How to Painlessly Use This
Use [cheesechaser](https://github.com/deepghs/cheesechaser) to quickly get images from this repository and [NebulaeWis/e621-2024-webp-4Mpixel](https://huggingface.co/datasets/NebulaeWis/e621-2024-webp-4Mpixel).
```python
from cheesechaser.datapool import E621NewestWebpDataPool
pool = E621NewestWebpDataPool()
pool.batch_download_to_directory(
resource_ids=[
# older images, from NebulaeWis/e621-2024-webp-4Mpixel
*range(1, 300),
# newest images, from deepghs/e621_newest-webp-4Mpixel
*range(5080000, 5080300),
],
# save to directory /data/webp_e621
dst_dir='/data/webp_e621',
)
```