Update README.md
Browse files
README.md
CHANGED
@@ -13,7 +13,7 @@ device = torch.device("cuda" if torch.cuda.is_available() else "cpu")
|
|
13 |
model_id = "eurecom-ds/scoresdeve-ema-multi-dsprites-64"
|
14 |
|
15 |
# load model and scheduler
|
16 |
-
pipe = DiffusionPipeline.from_pretrained(
|
17 |
pipe.to(device)
|
18 |
|
19 |
|
|
|
13 |
model_id = "eurecom-ds/scoresdeve-ema-multi-dsprites-64"
|
14 |
|
15 |
# load model and scheduler
|
16 |
+
pipe = DiffusionPipeline.from_pretrained(model_id, trust_remote_code=True)
|
17 |
pipe.to(device)
|
18 |
|
19 |
|