Update README.md
Browse files
README.md
CHANGED
@@ -3,4 +3,12 @@ license: mit
|
|
3 |
---
|
4 |
# Measuring Style Similarity in Diffusion Models
|
5 |
|
6 |
-
Unofficial implementation of [CSD](https://github.com/learn2phoenix/CSD
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3 |
---
|
4 |
# Measuring Style Similarity in Diffusion Models
|
5 |
|
6 |
+
Unofficial implementation of [CSD](https://github.com/learn2phoenix/CSD).
|
7 |
+
|
8 |
+
## Use with Transformers
|
9 |
+
```python
|
10 |
+
from transformers import AutoProcessor, AutoModel
|
11 |
+
|
12 |
+
model = AutoModel.from_pretrained("vvmatorin/CSD", trust_remote_code=True)
|
13 |
+
processor = AutoProcessor.from_pretrained("vvmatorin/CSD")
|
14 |
+
```
|