🎨 OmniConsistency: Stylized Image Pair Dataset (22 Styles)
39
5 commits
1 linked in READMEs
updated May 29, 2025
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 styleThis dataset is suitable for tasks such as:
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.
from datasets import load_dataset
ds = load_dataset("showlab/OmniConsistency", split="Ghibli")
print(ds[0])
styles = ["3D_Chibi", "Pixel", "Ghibli", "Van_Gogh"]
for style in styles:
ds = load_dataset("showlab/OmniConsistency", split=style)
print(style, len(ds))
To work with the actual image files:
git lfs install
git clone https://huggingface.co/datasets/showlab/OmniConsistency
Make sure you have Git LFS installed to retrieve image content.
@inproceedings{Song2025OmniConsistencyLS,
title={OmniConsistency: Learning Style-Agnostic Consistency from Paired Stylization Data},
author={Yiren Song and Cheng Liu and Mike Zheng Shou},
year={2025},
url={https://api.semanticscholar.org/CorpusID:278905729}
}
5 commits
🎨 OmniConsistency: Stylized Image Pair Dataset (22 Styles)
39
5 commits
1 linked in READMEs
updated May 29, 2025
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 styleThis dataset is suitable for tasks such as:
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.
from datasets import load_dataset
ds = load_dataset("showlab/OmniConsistency", split="Ghibli")
print(ds[0])
styles = ["3D_Chibi", "Pixel", "Ghibli", "Van_Gogh"]
for style in styles:
ds = load_dataset("showlab/OmniConsistency", split=style)
print(style, len(ds))
To work with the actual image files:
git lfs install
git clone https://huggingface.co/datasets/showlab/OmniConsistency
Make sure you have Git LFS installed to retrieve image content.
@inproceedings{Song2025OmniConsistencyLS,
title={OmniConsistency: Learning Style-Agnostic Consistency from Paired Stylization Data},
author={Yiren Song and Cheng Liu and Mike Zheng Shou},
year={2025},
url={https://api.semanticscholar.org/CorpusID:278905729}
}
5 commits