showlab/OmniConsistency 已完整同步
🎨 OmniConsistency: Stylized Image Pair Dataset (22 Styles)
OmniConsistency is a large-scale multi-style image translation dataset featuring 22 distinct artistic styles. Each style includes aligned image pairs:
src: the original image (e.g., photo or line sketch)tar: the stylized imageprompt: a descriptive text representing the intended artistic style
This dataset is suitable for tasks such as:
- Style transfer
- Image-to-image generation
- Conditional generation with prompts
- Consistency learning
🗂️ Dataset Structure
Each style is a separate split (e.g., "Ghibli", "Pixel") in the DatasetDict format. Each sample in a split has:
{
"src": "Ghibli/src/001.png",
"tar": "Ghibli/tar/001.png",
"prompt": "Ghibli Style, dreamy soft lighting, painterly landscape."
}
🔎 Note: Only image paths and prompts are provided. To access full image data, you must clone/download this repository.
🎨 Included Styles (22)
- 3D_Chibi
- American_Cartoon
- Chinese_Ink
- Clay_Toy
- Fabric
- Ghibli
- Irasutoya
- Jojo
- LEGO
- Line
- Macaron
- Oil_Painting
- Origami
- Paper_Cutting
- Picasso
- Pixel
- Poly
- Pop_Art
- Rick_Morty
- Snoopy
- Van_Gogh
- Vector
🧪 How to Use
Load a single style:
from datasets import load_dataset
ds = load_dataset("showlab/OmniConsistency", split="Ghibli")
print(ds[0])
Iterate through styles:
sty
7861 个文件
浏览文件数据集版权信息
本数据集的许可证为 MIT License。如有违反相关条款,请联系 WEHUB,我们将及时处理。 查看许可证
通过 WeHub CLI 下载当前数据集快照。下列命令会固定为当前页面展示的数据版本(如果页面提供版本)。文件字节由本机直连存储下载,浏览器不会签发或保存下载链接。
前置要求
需要 Node.js 18 及以上,以及 npm(或 npx)。
1. 安装 CLI
npm install -g wehub-cli@latest
2. 下载此数据集
wehub datasets download ds_ext_4246_f7a5b5b337 --revision e94c0159f71b93aa24786b737efb91a44704a4b5 --output ./ds_ext_4246_f7a5b5b337
若中断或部分失败,在同一目录重新执行同一命令即可续传。默认会校验 SHA-256。
免全局安装
npx --yes wehub-cli@latest datasets download ds_ext_4246_f7a5b5b337 --revision e94c0159f71b93aa24786b737efb91a44704a4b5 --output ./ds_ext_4246_f7a5b5b337
高级选项
以下为 wehub datasets download 已支持的参数示例:
强制重新下载,不复用已校验的本地文件
wehub datasets download ds_ext_4246_f7a5b5b337 --revision e94c0159f71b93aa24786b737efb91a44704a4b5 --output ./ds_ext_4246_f7a5b5b337 --overwrite
仅包含匹配路径
wehub datasets download ds_ext_4246_f7a5b5b337 --revision e94c0159f71b93aa24786b737efb91a44704a4b5 --output ./ds_ext_4246_f7a5b5b337 --include "*.jsonl"
排除匹配路径
wehub datasets download ds_ext_4246_f7a5b5b337 --revision e94c0159f71b93aa24786b737efb91a44704a4b5 --output ./ds_ext_4246_f7a5b5b337 --exclude "*.md"
提高并发下载数
wehub datasets download ds_ext_4246_f7a5b5b337 --revision e94c0159f71b93aa24786b737efb91a44704a4b5 --output ./ds_ext_4246_f7a5b5b337 --jobs 8
完整帮助:wehub datasets download --help