vvmatorin commited on
Commit
89f5c8d
·
verified ·
1 Parent(s): cd5a5b9

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +9 -1
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/tree/main).
 
 
 
 
 
 
 
 
 
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
+ ```