Update README.md
Browse files
README.md
CHANGED
@@ -25,8 +25,9 @@ Consistency from Paired Stylization Data**
|
|
25 |
[Show Lab](https://sites.google.com/view/showlab), National University of Singapore
|
26 |
<br>
|
27 |
|
28 |
-
[[
|
29 |
-
[[
|
|
|
30 |
<img src='./figure/teaser.png' width='100%' />
|
31 |
|
32 |
## Installation
|
@@ -146,7 +147,24 @@ clear_cache(pipe.transformer)
|
|
146 |
image.save("results/output.png")
|
147 |
```
|
148 |
|
149 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
150 |
```
|
151 |
|
152 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
25 |
[Show Lab](https://sites.google.com/view/showlab), National University of Singapore
|
26 |
<br>
|
27 |
|
28 |
+
[[Official Code]](https://github.com/showlab/OmniConsistency)
|
29 |
+
[[Paper]](https://huggingface.co/papers/2505.18445)
|
30 |
+
[[Dataset]](https://huggingface.co/datasets/showlab/OmniConsistency)
|
31 |
<img src='./figure/teaser.png' width='100%' />
|
32 |
|
33 |
## Installation
|
|
|
147 |
image.save("results/output.png")
|
148 |
```
|
149 |
|
150 |
+
## Datasets
|
151 |
+
Our datasets have been uploaded to the [Hugging Face](https://huggingface.co/datasets/showlab/OmniConsistency). and is available for direct use via the datasets library.
|
152 |
+
|
153 |
+
You can easily load any of the 22 style subsets like this:
|
154 |
+
```python
|
155 |
+
from datasets import load_dataset
|
156 |
+
|
157 |
+
# Load a single style (e.g., Ghibli)
|
158 |
+
ds = load_dataset("showlab/OmniConsistency", split="Ghibli")
|
159 |
+
print(ds[0])
|
160 |
```
|
161 |
|
162 |
+
## Citation
|
163 |
+
```
|
164 |
+
@inproceedings{Song2025OmniConsistencyLS,
|
165 |
+
title={OmniConsistency: Learning Style-Agnostic Consistency from Paired Stylization Data},
|
166 |
+
author={Yiren Song and Cheng Liu and Mike Zheng Shou},
|
167 |
+
year={2025},
|
168 |
+
url={https://api.semanticscholar.org/CorpusID:278905729}
|
169 |
+
}
|
170 |
+
```
|