e621_newest-webp-4Mpixel
收藏资源简介:
# 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', ) ```
# E621最新4M像素重编码数据集 本数据集为[deepghs/e621_newest](https://huggingface.co/datasets/deepghs/e621_newest)的重编码版本,所有经过尺寸调整的图像均存储于此。 数据集总计包含477925张图像,其最大图像ID为5217942,最后更新时间为UTC时间2024年12月3日09:44:23。 本数据集仅包含最新的WebP格式图像;若需获取旧版WebP格式图像,请访问[NebulaeWis/e621-2024-webp-4Mpixel](https://huggingface.co/datasets/NebulaeWis/e621-2024-webp-4Mpixel)。 # 便捷使用指南 可通过[cheesechaser](https://github.com/deepghs/cheesechaser)快速从本数据集仓库以及[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=[ # 来自NebulaeWis/e621-2024-webp-4Mpixel的旧版图像 *range(1, 300), # 来自deepghs/e621_newest-webp-4Mpixel的新版图像 *range(5080000, 5080300), ], # 保存至目录/data/webp_e621 dst_dir='/data/webp_e621', )




