CyberHarem/bubble_arknights
收藏Hugging Face2024-03-21 更新2024-03-04 收录
下载链接:
https://hf-mirror.com/datasets/CyberHarem/bubble_arknights
下载链接
链接失效反馈官方服务:
资源简介:
这是泡泡/バブル/泡泡(Arknights)的数据集,包含17张图像及其标签。该角色的核心标签包括`brown_hair, long_hair, horns, single_horn, ponytail, animal_ears, bow, hair_ornament, hair_bow, horse_ears, hairclip, green_eyes, horse_girl`,这些标签在数据集中被修剪。图像从多个网站(如danbooru、pixiv、zerochan等)爬取,自动爬取系统由DeepGHS团队开发。数据集提供了多个包,包括原始数据、1200像素限制的数据集和三阶段裁剪的数据集。
这是泡泡/バブル/泡泡(Arknights)的数据集,包含17张图像及其标签。该角色的核心标签包括`brown_hair, long_hair, horns, single_horn, ponytail, animal_ears, bow, hair_ornament, hair_bow, horse_ears, hairclip, green_eyes, horse_girl`,这些标签在数据集中被修剪。图像从多个网站(如danbooru、pixiv、zerochan等)爬取,自动爬取系统由DeepGHS团队开发。数据集提供了多个包,包括原始数据、1200像素限制的数据集和三阶段裁剪的数据集。
提供机构:
CyberHarem
原始信息汇总
数据集概述
数据集信息
- 名称: 泡泡 (Arknights)
- 描述: 包含17张图片及其标签的数据集。
- 核心标签:
brown_hair, long_hair, horns, single_horn, ponytail, animal_ears, bow, hair_ornament, hair_bow, horse_ears, hairclip, green_eyes, horse_girl - 标签分类:
1girl, solo, smile, open_mouth, armor, looking_at_viewer, gloves, white_background, blush, full_body, holding
数据集包
| 名称 | 图片数量 | 大小 | 类型 | 描述 |
|---|---|---|---|---|
| raw | 17 | 18.98 MiB | Waifuc-Raw | 包含元信息的原始数据(如果较大,最小边对齐到1400)。 |
| 1200 | 17 | 16.81 MiB | IMG+TXT | 短边不超过1200像素的数据集。 |
| stage3-p480-1200 | 39 | 32.93 MiB | IMG+TXT | 3阶段裁剪数据集,区域不小于480x480像素。 |
数据加载
使用Waifuc加载原始数据集
python import os import zipfile
from huggingface_hub import hf_hub_download from waifuc.source import LocalSource
下载原始归档文件
zip_file = hf_hub_download( repo_id=CyberHarem/bubble_arknights, repo_type=dataset, filename=dataset-raw.zip, )
提取文件到指定目录
dataset_dir = dataset_dir os.makedirs(dataset_dir, exist_ok=True) with zipfile.ZipFile(zip_file, r) as zf: zf.extractall(dataset_dir)
使用waifuc加载数据集
source = LocalSource(dataset_dir) for item in source: print(item.image, item.meta[filename], item.meta[tags])



